xref: /OK3568_Linux_fs/buildroot/package/dhcp/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_DHCP
2	bool "dhcp (ISC)"
3	# fork()
4	depends on BR2_USE_MMU
5	depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
6	select BR2_PACKAGE_BIND
7	help
8	  DHCP relay agent from the ISC DHCP distribution.
9
10	  https://www.isc.org/downloads/dhcp/
11
12if BR2_PACKAGE_DHCP
13
14config BR2_PACKAGE_DHCP_SERVER
15	bool "dhcp server"
16	select BR2_PACKAGE_SYSTEMD_TMPFILES if BR2_PACKAGE_SYSTEMD
17	help
18	  DHCP server from the ISC DHCP distribution.
19
20	  This also installs omshell, an interactive tool to connect to,
21	  query, and possibly change, the server's state via the Object
22	  Management API (OMAPI).
23
24config BR2_PACKAGE_DHCP_SERVER_DELAYED_ACK
25	bool "Enable delayed ACK feature"
26	depends on BR2_PACKAGE_DHCP_SERVER
27	help
28	  Enable delayed ACK feature in the ISC DHCP server.
29
30config BR2_PACKAGE_DHCP_RELAY
31	bool "dhcp relay"
32	help
33	  DHCP relay agent from the ISC DHCP distribution.
34
35config BR2_PACKAGE_DHCP_CLIENT
36	bool "dhcp client"
37	help
38	  DHCP client from the ISC DHCP distribution.
39
40endif
41