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 | 87066add71224667509ba4519bafa405de650cd1 (patch) | |
tree | 8f8ce2e2a1834e5e24249bdb20b4ac77e6191c81 /openwrt/package/dhcp/Config.in | |
parent | bc67e5c220fb53180bc90a4c7711e08f8afed154 (diff) | |
download | mtk-20170518-87066add71224667509ba4519bafa405de650cd1.zip mtk-20170518-87066add71224667509ba4519bafa405de650cd1.tar.gz mtk-20170518-87066add71224667509ba4519bafa405de650cd1.tar.bz2 |
Simplify configure and add target optimizations, Rename dhcp package to dhcp-server, Add dhcp-relay package.
SVN-Revision: 1405
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 d1b0530..e52c460 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 |