diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-07-11 15:35:30 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-07-11 15:35:30 +0000 |
commit | 3fd38de2dd220bcf15132541699c4bf3c54c74db (patch) | |
tree | b6f615314857f6838935c55fa0c4148addf518ef /package/dhcp/Config.in | |
parent | f3a5cb18d71685854b6c3e5ed0113d637b0a934c (diff) | |
download | upstream-3fd38de2dd220bcf15132541699c4bf3c54c74db.tar.gz upstream-3fd38de2dd220bcf15132541699c4bf3c54c74db.tar.bz2 upstream-3fd38de2dd220bcf15132541699c4bf3c54c74db.zip |
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/openwrt@1405 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/dhcp/Config.in')
-rw-r--r-- | package/dhcp/Config.in | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/package/dhcp/Config.in b/package/dhcp/Config.in index d1b0530645..e52c46060e 100644 --- a/package/dhcp/Config.in +++ b/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 |