change bool in BR2_COMPILE_* to tristate to avoid unnecessary package/<foo>-install...
[openwrt.git] / package / dhcp / Config.in
1 #menu "dhcp.............................. ISC DHCP (Dynamic Host Configuration Protocol) implementation"
2
3 config BR2_COMPILE_DHCP
4         tristate
5         default n
6         depends BR2_PACKAGE_DHCP_RELAY || BR2_PACKAGE_DHCP_SERVER
7
8 config BR2_PACKAGE_DHCP_RELAY
9         prompt "dhcp-relay........................ ISC DHCP relay"
10         tristate
11         default m if CONFIG_DEVEL
12         select BR2_COMPILE_DHCP
13         help
14           ISC (Internet Software Consortium) DHCP (Dynamic Host Configuration 
15           Protocol) relay daemon.
16           
17           http://www.isc.org/
18
19 config BR2_PACKAGE_DHCP_SERVER
20         prompt "dhcp-server....................... ISC DHCP server"
21         tristate
22         default m if CONFIG_DEVEL
23         select BR2_COMPILE_DHCP
24         help
25           ISC (Internet Software Consortium) DHCP (Dynamic Host Configuration 
26           Protocol) server daemon.
27           
28           http://www.isc.org/
29
30 #endmenu