diff options
author | Ron Yorston <rmy@pobox.com> | 2021-03-24 11:55:30 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-03-24 12:43:15 +0000 |
commit | 355a7a6c1e9626b7afe8758a6095f3cf275c52e1 (patch) | |
tree | 6dab679c15b049cab97212e0b43077132eec1fbe /networking/udhcp | |
parent | 71ecc8033e6989996057b32577e71148fd544596 (diff) | |
parent | 889425812b5cda8b3394d73253cbde7355fb1115 (diff) | |
download | busybox-w32-w32_1_26_2.tar.gz busybox-w32-w32_1_26_2.tar.bz2 busybox-w32-w32_1_26_2.zip |
Merge tag '1_26_2' into w32_1_26_2w32_1_26_2
Diffstat (limited to 'networking/udhcp')
-rw-r--r-- | networking/udhcp/Config.src | 2 | ||||
-rw-r--r-- | networking/udhcp/Kbuild.src | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/networking/udhcp/Config.src b/networking/udhcp/Config.src index c34c8d6f0..90fb313b5 100644 --- a/networking/udhcp/Config.src +++ b/networking/udhcp/Config.src | |||
@@ -16,7 +16,6 @@ config UDHCPD | |||
16 | config DHCPRELAY | 16 | config DHCPRELAY |
17 | bool "dhcprelay" | 17 | bool "dhcprelay" |
18 | default y | 18 | default y |
19 | depends on UDHCPD | ||
20 | help | 19 | help |
21 | dhcprelay listens for dhcp requests on one or more interfaces | 20 | dhcprelay listens for dhcp requests on one or more interfaces |
22 | and forwards these requests to a different interface or dhcp | 21 | and forwards these requests to a different interface or dhcp |
@@ -25,7 +24,6 @@ config DHCPRELAY | |||
25 | config DUMPLEASES | 24 | config DUMPLEASES |
26 | bool "Lease display utility (dumpleases)" | 25 | bool "Lease display utility (dumpleases)" |
27 | default y | 26 | default y |
28 | depends on UDHCPD | ||
29 | help | 27 | help |
30 | dumpleases displays the leases written out by the udhcpd server. | 28 | dumpleases displays the leases written out by the udhcpd server. |
31 | Lease times are stored in the file by time remaining in lease, or | 29 | Lease times are stored in the file by time remaining in lease, or |
diff --git a/networking/udhcp/Kbuild.src b/networking/udhcp/Kbuild.src index 5ea77df06..fcb725fbc 100644 --- a/networking/udhcp/Kbuild.src +++ b/networking/udhcp/Kbuild.src | |||
@@ -15,7 +15,7 @@ lib-$(CONFIG_UDHCPD) += common.o packet.o signalpipe.o socket.o | |||
15 | lib-$(CONFIG_UDHCPC) += dhcpc.o | 15 | lib-$(CONFIG_UDHCPC) += dhcpc.o |
16 | lib-$(CONFIG_UDHCPD) += dhcpd.o arpping.o | 16 | lib-$(CONFIG_UDHCPD) += dhcpd.o arpping.o |
17 | lib-$(CONFIG_DUMPLEASES) += dumpleases.o | 17 | lib-$(CONFIG_DUMPLEASES) += dumpleases.o |
18 | lib-$(CONFIG_DHCPRELAY) += dhcprelay.o | 18 | lib-$(CONFIG_DHCPRELAY) += dhcprelay.o common.o socket.o packet.o |
19 | 19 | ||
20 | lib-$(CONFIG_FEATURE_UDHCPC_ARPING) += arpping.o | 20 | lib-$(CONFIG_FEATURE_UDHCPC_ARPING) += arpping.o |
21 | lib-$(CONFIG_FEATURE_UDHCP_RFC3397) += domain_codec.o | 21 | lib-$(CONFIG_FEATURE_UDHCP_RFC3397) += domain_codec.o |