diff options
| author | Felix Fietkau <nbd@openwrt.org> | 2005-07-25 08:04:38 +0000 |
|---|---|---|
| committer | Felix Fietkau <nbd@openwrt.org> | 2005-07-25 08:04:38 +0000 |
| commit | 4212fefb80d7a5bc8393c568acf7b732ed37d047 (patch) | |
| tree | b7727965a3755220eb7e11e1c42cc660db9044ca | |
| parent | ac3b4f6757297703fa4495fc30ed197fe7570e33 (diff) | |
| download | upstream-4212fefb80d7a5bc8393c568acf7b732ed37d047.tar.gz upstream-4212fefb80d7a5bc8393c568acf7b732ed37d047.tar.bz2 upstream-4212fefb80d7a5bc8393c568acf7b732ed37d047.zip | |
fix dhcp Config.in dependency issue
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1555 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | openwrt/package/dhcp/Config.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/openwrt/package/dhcp/Config.in b/openwrt/package/dhcp/Config.in index e52c46060ec..9a3a71b6924 100644 --- a/openwrt/package/dhcp/Config.in +++ b/openwrt/package/dhcp/Config.in @@ -1,11 +1,12 @@ config BR2_PACKAGE_DHCP - bool + tristate 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 + select BR2_PACKAGE_DHCP help ISC (Internet Software Consortium) DHCP (Dynamic Host Configuration Protocol) relay daemon. @@ -16,6 +17,7 @@ config BR2_PACKAGE_DHCP_RELAY config BR2_PACKAGE_DHCP_SERVER tristate "dhcp-server - ISC DHCP server" default m if CONFIG_DEVEL + select BR2_PACKAGE_DHCP help ISC (Internet Software Consortium) DHCP (Dynamic Host Configuration Protocol) server daemon. |
