svn commit: trunk/busybox

landley at busybox.net landley at busybox.net
Wed Mar 22 21:03:23 UTC 2006


Author: landley
Date: 2006-03-22 13:03:21 -0800 (Wed, 22 Mar 2006)
New Revision: 14611

Log:
We make both busybox and busybox_unstripped all the time now, no need to
specify whether or not to strip the binary.


Modified:
   trunk/busybox/Config.in
   trunk/busybox/Rules.mak


Changeset:
Modified: trunk/busybox/Config.in
===================================================================
--- trunk/busybox/Config.in	2006-03-22 20:43:35 UTC (rev 14610)
+++ trunk/busybox/Config.in	2006-03-22 21:03:21 UTC (rev 14611)
@@ -326,13 +326,6 @@
 
 endchoice
 
-config CONFIG_STRIP_BINARIES
-	bool "Strip busybox objects"
-	default y if !CONFIG_DEBUG
-	default n if CONFIG_DEBUG
-	help
-	  Whether or not we strip the busybox binary and such.
-
 config CONFIG_DEBUG_YANK_SUSv2
 	bool "Disable obsolete features removed before SUSv3?"
 	default y

Modified: trunk/busybox/Rules.mak
===================================================================
--- trunk/busybox/Rules.mak	2006-03-22 20:43:35 UTC (rev 14610)
+++ trunk/busybox/Rules.mak	2006-03-22 21:03:21 UTC (rev 14611)
@@ -196,11 +196,7 @@
     LDFLAGS += $(call check_ld,--warn-common,)
     LDFLAGS += $(call check_ld,--sort-common,)
 endif
-ifeq ($(CONFIG_STRIP_BINARIES),y)
-    STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment
-else
-    STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging
-endif
+STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment
 ifeq ($(strip $(CONFIG_STATIC)),y)
     PROG_CFLAGS += $(call check_gcc,-static,)
 endif




More information about the busybox-cvs mailing list