1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
--- a/Makefile
+++ b/Makefile
@@ -690,20 +690,10 @@
endif # ifdef CONFIG_KALLSYMS
# busybox image - including updated kernel symbols
-busybox_unstripped: $(busybox-all) FORCE
+busybox: $(busybox-all) FORCE
$(call if_changed_rule,busybox__)
$(Q)rm -f .old_version
-busybox: busybox_unstripped
-ifeq ($(SKIP_STRIP),y)
- $(Q)cp $< $@
-else
- $(Q)$(STRIP) -s --remove-section=.note --remove-section=.comment \
- busybox_unstripped -o $@
-# strip is confused by PIE executable and does not set exec bits
- $(Q)chmod a+x $@
-endif
-
# The actual objects are generated when descending,
# make sure no implicit rule kicks in
$(sort $(busybox-all)): $(busybox-dirs) ;
|