[BusyBox-cvs] busybox/networking/udhcp Config.in,NONE,1.1 Makefile.in,1.1,1.2 config.in,1.1,NONE

Erik Andersen andersen at codepoet.org
Thu Dec 5 08:42:01 UTC 2002


Update of /var/cvs/busybox/networking/udhcp
In directory winder:/tmp/cvs-serv7481/networking/udhcp

Modified Files:
	Makefile.in 
Added Files:
	Config.in 
Removed Files:
	config.in 
Log Message:
Yet another major rework of the BusyBox config system, using the considerably
modified Kbuild system I put into uClibc.  With this, there should be no more
need to modify Rules.mak since I've moved all the interesting options into the
config system.  I think I've got everything updated, but you never know, I may
have made some mistakes, so watch closely.
 -Erik


--- NEW FILE: Config.in ---
#
# For a description of the syntax of this configuration file,
# see scripts/kbuild/config-language.txt.
#

menu "udhcp Server/Client"

config CONFIG_UDHCPD
	bool "udhcp Server (udhcpd)"
	default n
	help
	  Please submit a patch to add help text for this item.

config CONFIG_UDHCPC
	bool "udhcp Client (udhcpc)"
	default n
	help
	  Please submit a patch to add help text for this item.

config CONFIG_DUMPLEASES
	bool "Lease display utility (dumpleases)"
	default n
	depends on CONFIG_UDHCPD
	help
	  Please submit a patch to add help text for this item.

config CONFIG_FEATURE_UDHCP_SYSLOG
	bool "  Log udhcp messages to syslog (instead of stdout)"
	default n
	depends on CONFIG_UDHCPD || CONFIG_UDHCPC
	help
	  Please submit a patch to add help text for this item.

config CONFIG_FEATURE_UDHCP_DEBUG
	bool "  Compile udhcp with noisy debugging messages"
	default n
	depends on CONFIG_UDHCPD || CONFIG_UDHCPC
	help
	  Please submit a patch to add help text for this item.

endmenu


Index: Makefile.in
===================================================================
RCS file: /var/cvs/busybox/networking/udhcp/Makefile.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile.in	14 Oct 2002 21:41:26 -0000	1.1
+++ Makefile.in	5 Dec 2002 08:40:56 -0000	1.2
@@ -44,3 +44,9 @@
 $(UDHCP_DIR)$(UDHCP_AR): $(patsubst %,$(UDHCP_DIR)%, $(UDHCP-y))
 	$(AR) -ro $@ $(patsubst %,$(UDHCP_DIR)%, $(UDHCP-y))
 
+$(UDHCP_DIR)dhcpc.o: $(UDHCP_DIR)dhcpc.c
+	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -DCOMBINED_BINARY -c $< -o $@
+
+$(UDHCP_DIR)dhcpd.o: $(UDHCP_DIR)dhcpd.c
+	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -DCOMBINED_BINARY -c $< -o $@
+

--- config.in DELETED ---




More information about the busybox-cvs mailing list