diff options
author | Rob Landley | 2006-06-22 18:48:34 +0000 |
---|---|---|
committer | Rob Landley | 2006-06-22 18:48:34 +0000 |
commit | 67d49433930b2e2e9b5af54ebaca072a7b1b4eaa (patch) | |
tree | 265d1347fb148caeeebcf72f5f167a8123fb514d /networking | |
parent | 135cee3741c3447730c2655604b1b947fc5fce07 (diff) | |
download | busybox-67d49433930b2e2e9b5af54ebaca072a7b1b4eaa.zip busybox-67d49433930b2e2e9b5af54ebaca072a7b1b4eaa.tar.gz |
CONFIG_DHCP -> CONFIG_APP_DHCP.
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 fc07a9b..eb6f3fa 100644 --- a/networking/udhcp/Config.in +++ b/networking/udhcp/Config.in @@ -5,7 +5,7 @@ menu "udhcp Server/Client" -config CONFIG_UDHCPD +config CONFIG_APP_UDHCPD bool "udhcp Server (udhcpd)" default n help @@ -14,7 +14,7 @@ config CONFIG_UDHCPD See http://udhcp.busybox.net for further details. -config CONFIG_UDHCPC +config CONFIG_APP_UDHCPC bool "udhcp Client (udhcpc)" default n help @@ -26,10 +26,10 @@ config CONFIG_UDHCPC See http://udhcp.busybox.net for further details. -config CONFIG_DUMPLEASES +config CONFIG_APP_DUMPLEASES bool "Lease display utility (dumpleases)" default n - depends on CONFIG_UDHCPD + depends on CONFIG_APP_UDHCPD help dumpleases displays the leases written out by the udhcpd server. Lease times are stored in the file by time remaining in lease, or @@ -40,7 +40,7 @@ config CONFIG_DUMPLEASES config CONFIG_FEATURE_UDHCP_SYSLOG bool " Log udhcp messages to syslog (instead of stdout)" default n - depends on CONFIG_UDHCPD || CONFIG_UDHCPC + depends on CONFIG_APP_UDHCPD || CONFIG_APP_UDHCPC help If selected, udhcpd will log all its messages to syslog, otherwise, it will attempt to log them to stdout. @@ -50,7 +50,7 @@ config CONFIG_FEATURE_UDHCP_SYSLOG config CONFIG_FEATURE_UDHCP_DEBUG bool " Compile udhcp with noisy debugging messages" default n - depends on CONFIG_UDHCPD || CONFIG_UDHCPC + depends on CONFIG_APP_UDHCPD || CONFIG_APP_UDHCPC help If selected, udhcpd will output extra debugging output. If using 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 df32247..77c4b72 100644 --- a/networking/udhcp/Makefile.in +++ b/networking/udhcp/Makefile.in @@ -12,10 +12,10 @@ endif srcdir=$(top_srcdir)/networking/udhcp #ok, so I forgot how to do an or, but this is a quick and dirty hack -ifeq ($(strip $(CONFIG_UDHCPC)),y) +ifeq ($(strip $(CONFIG_APP_UDHCPC)),y) CONFIG_UDHCP_SHARED=y else -ifeq ($(strip $(CONFIG_UDHCPD)),y) +ifeq ($(strip $(CONFIG_APP_UDHCPD)),y) CONFIG_UDHCP_SHARED=y else CONFIG_UDHCP_SHARED=n @@ -25,11 +25,11 @@ endif UDHCP-y:= UDHCP-$(CONFIG_UDHCP_SHARED) += common.c options.c packet.c pidfile.c \ signalpipe.c socket.c -UDHCP-$(CONFIG_UDHCPC) += dhcpc.c clientpacket.c clientsocket.c \ +UDHCP-$(CONFIG_APP_UDHCPC) += dhcpc.c clientpacket.c clientsocket.c \ script.c -UDHCP-$(CONFIG_UDHCPD) += dhcpd.c arpping.c files.c leases.c \ +UDHCP-$(CONFIG_APP_UDHCPD) += dhcpd.c arpping.c files.c leases.c \ serverpacket.c static_leases.c -UDHCP-$(CONFIG_DUMPLEASES) += dumpleases.c +UDHCP-$(CONFIG_APP_DUMPLEASES) += dumpleases.c UDHCP_OBJS:=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y)) ifneq ($(strip $(UDHCP-y)),) |