diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-11 15:35:30 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-11 15:35:30 +0000 |
commit | 936ed6e3e623e373091872a0ef559cdc3133370d (patch) | |
tree | 8f8ce2e2a1834e5e24249bdb20b4ac77e6191c81 /openwrt/package/dhcp/Config.in | |
parent | 28fd9cd55ae93617c5e109d496ee6da74009bc45 (diff) |
Simplify configure and add target optimizations,
Rename dhcp package to dhcp-server,
Add dhcp-relay package.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1405 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/dhcp/Config.in')
-rw-r--r-- | openwrt/package/dhcp/Config.in | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/openwrt/package/dhcp/Config.in b/openwrt/package/dhcp/Config.in index d1b0530645..e52c46060e 100644 --- a/openwrt/package/dhcp/Config.in +++ b/openwrt/package/dhcp/Config.in @@ -1,7 +1,25 @@ config BR2_PACKAGE_DHCP - tristate "dhcp" + bool + default n + depends BR2_PACKAGE_DHCP_RELAY || BR2_PACKAGE_DHCP_SERVER + +config BR2_PACKAGE_DHCP_RELAY + tristate "dhcp-relay - ISC DHCP relay" + default m if CONFIG_DEVEL + help + ISC (Internet Software Consortium) DHCP (Dynamic Host Configuration + Protocol) relay daemon. + + http://www.isc.org/ + + +config BR2_PACKAGE_DHCP_SERVER + tristate "dhcp-server - ISC DHCP server" default m if CONFIG_DEVEL help - dhcp server + ISC (Internet Software Consortium) DHCP (Dynamic Host Configuration + Protocol) server daemon. + + http://www.isc.org/ + - http://www.isc.org |