diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-22 18:48:34 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-22 18:48:34 +0000 |
commit | 995e00a2bf5676081792c67ee316300d2246ae57 (patch) | |
tree | 265d1347fb148caeeebcf72f5f167a8123fb514d /networking | |
parent | cc781a3a641ebc25e82dc3151e0f97b536e180ff (diff) | |
download | busybox-w32-995e00a2bf5676081792c67ee316300d2246ae57.tar.gz busybox-w32-995e00a2bf5676081792c67ee316300d2246ae57.tar.bz2 busybox-w32-995e00a2bf5676081792c67ee316300d2246ae57.zip |
CONFIG_DHCP -> CONFIG_APP_DHCP.
git-svn-id: svn://busybox.net/trunk/busybox@15482 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'networking')
-rw-r--r-- | networking/udhcp/Config.in | 12 | ||||
-rw-r--r-- | networking/udhcp/Makefile.in | 10 |
2 files changed, 11 insertions, 11 deletions
diff --git a/networking/udhcp/Config.in b/networking/udhcp/Config.in index fc07a9b7f..eb6f3fa55 100644 --- a/networking/udhcp/Config.in +++ b/networking/udhcp/Config.in | |||
@@ -5,7 +5,7 @@ | |||
5 | 5 | ||
6 | menu "udhcp Server/Client" | 6 | menu "udhcp Server/Client" |
7 | 7 | ||
8 | config CONFIG_UDHCPD | 8 | config CONFIG_APP_UDHCPD |
9 | bool "udhcp Server (udhcpd)" | 9 | bool "udhcp Server (udhcpd)" |
10 | default n | 10 | default n |
11 | help | 11 | help |
@@ -14,7 +14,7 @@ config CONFIG_UDHCPD | |||
14 | 14 | ||
15 | See http://udhcp.busybox.net for further details. | 15 | See http://udhcp.busybox.net for further details. |
16 | 16 | ||
17 | config CONFIG_UDHCPC | 17 | config CONFIG_APP_UDHCPC |
18 | bool "udhcp Client (udhcpc)" | 18 | bool "udhcp Client (udhcpc)" |
19 | default n | 19 | default n |
20 | help | 20 | help |
@@ -26,10 +26,10 @@ config CONFIG_UDHCPC | |||
26 | 26 | ||
27 | See http://udhcp.busybox.net for further details. | 27 | See http://udhcp.busybox.net for further details. |
28 | 28 | ||
29 | config CONFIG_DUMPLEASES | 29 | config CONFIG_APP_DUMPLEASES |
30 | bool "Lease display utility (dumpleases)" | 30 | bool "Lease display utility (dumpleases)" |
31 | default n | 31 | default n |
32 | depends on CONFIG_UDHCPD | 32 | depends on CONFIG_APP_UDHCPD |
33 | help | 33 | help |
34 | dumpleases displays the leases written out by the udhcpd server. | 34 | dumpleases displays the leases written out by the udhcpd server. |
35 | Lease times are stored in the file by time remaining in lease, or | 35 | Lease times are stored in the file by time remaining in lease, or |
@@ -40,7 +40,7 @@ config CONFIG_DUMPLEASES | |||
40 | config CONFIG_FEATURE_UDHCP_SYSLOG | 40 | config CONFIG_FEATURE_UDHCP_SYSLOG |
41 | bool " Log udhcp messages to syslog (instead of stdout)" | 41 | bool " Log udhcp messages to syslog (instead of stdout)" |
42 | default n | 42 | default n |
43 | depends on CONFIG_UDHCPD || CONFIG_UDHCPC | 43 | depends on CONFIG_APP_UDHCPD || CONFIG_APP_UDHCPC |
44 | help | 44 | help |
45 | If selected, udhcpd will log all its messages to syslog, otherwise, | 45 | If selected, udhcpd will log all its messages to syslog, otherwise, |
46 | it will attempt to log them to stdout. | 46 | it will attempt to log them to stdout. |
@@ -50,7 +50,7 @@ config CONFIG_FEATURE_UDHCP_SYSLOG | |||
50 | config CONFIG_FEATURE_UDHCP_DEBUG | 50 | config CONFIG_FEATURE_UDHCP_DEBUG |
51 | bool " Compile udhcp with noisy debugging messages" | 51 | bool " Compile udhcp with noisy debugging messages" |
52 | default n | 52 | default n |
53 | depends on CONFIG_UDHCPD || CONFIG_UDHCPC | 53 | depends on CONFIG_APP_UDHCPD || CONFIG_APP_UDHCPC |
54 | help | 54 | help |
55 | If selected, udhcpd will output extra debugging output. If using | 55 | If selected, udhcpd will output extra debugging output. If using |
56 | this option, compile uDHCP with "-g", and do not fork the daemon to | 56 | this option, compile uDHCP with "-g", and do not fork the daemon to |
diff --git a/networking/udhcp/Makefile.in b/networking/udhcp/Makefile.in index df32247c6..77c4b720a 100644 --- a/networking/udhcp/Makefile.in +++ b/networking/udhcp/Makefile.in | |||
@@ -12,10 +12,10 @@ endif | |||
12 | srcdir=$(top_srcdir)/networking/udhcp | 12 | srcdir=$(top_srcdir)/networking/udhcp |
13 | 13 | ||
14 | #ok, so I forgot how to do an or, but this is a quick and dirty hack | 14 | #ok, so I forgot how to do an or, but this is a quick and dirty hack |
15 | ifeq ($(strip $(CONFIG_UDHCPC)),y) | 15 | ifeq ($(strip $(CONFIG_APP_UDHCPC)),y) |
16 | CONFIG_UDHCP_SHARED=y | 16 | CONFIG_UDHCP_SHARED=y |
17 | else | 17 | else |
18 | ifeq ($(strip $(CONFIG_UDHCPD)),y) | 18 | ifeq ($(strip $(CONFIG_APP_UDHCPD)),y) |
19 | CONFIG_UDHCP_SHARED=y | 19 | CONFIG_UDHCP_SHARED=y |
20 | else | 20 | else |
21 | CONFIG_UDHCP_SHARED=n | 21 | CONFIG_UDHCP_SHARED=n |
@@ -25,11 +25,11 @@ endif | |||
25 | UDHCP-y:= | 25 | UDHCP-y:= |
26 | UDHCP-$(CONFIG_UDHCP_SHARED) += common.c options.c packet.c pidfile.c \ | 26 | UDHCP-$(CONFIG_UDHCP_SHARED) += common.c options.c packet.c pidfile.c \ |
27 | signalpipe.c socket.c | 27 | signalpipe.c socket.c |
28 | UDHCP-$(CONFIG_UDHCPC) += dhcpc.c clientpacket.c clientsocket.c \ | 28 | UDHCP-$(CONFIG_APP_UDHCPC) += dhcpc.c clientpacket.c clientsocket.c \ |
29 | script.c | 29 | script.c |
30 | UDHCP-$(CONFIG_UDHCPD) += dhcpd.c arpping.c files.c leases.c \ | 30 | UDHCP-$(CONFIG_APP_UDHCPD) += dhcpd.c arpping.c files.c leases.c \ |
31 | serverpacket.c static_leases.c | 31 | serverpacket.c static_leases.c |
32 | UDHCP-$(CONFIG_DUMPLEASES) += dumpleases.c | 32 | UDHCP-$(CONFIG_APP_DUMPLEASES) += dumpleases.c |
33 | UDHCP_OBJS:=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y)) | 33 | UDHCP_OBJS:=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y)) |
34 | 34 | ||
35 | ifneq ($(strip $(UDHCP-y)),) | 35 | ifneq ($(strip $(UDHCP-y)),) |