aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2009-01-26 18:10:37 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2009-01-26 18:10:37 -0500
commit2034563ca323ee45f37a32911550d21c1f1e9626 (patch)
treecb9cfd052df2caa736f95890580b9de39276b77f /Makefile
parent924d26df6b774b85c8b4548189b20e34f904a149 (diff)
parentdf291fa993c506da89a89264ff8166bccd172a14 (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes
* git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes: kbuild: fix kbuild.txt typos kbuild: print usage with no arguments in scripts/config Revert "kbuild: strip generated symbols from *.ko"
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile59
1 files changed, 18 insertions, 41 deletions
diff --git a/Makefile b/Makefile
index 93b81bc10e13..cf9e20dac86e 100644
--- a/Makefile
+++ b/Makefile
@@ -610,25 +610,20 @@ export INSTALL_PATH ?= /boot
610MODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE) 610MODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
611export MODLIB 611export MODLIB
612 612
613strip-symbols := $(srctree)/scripts/strip-symbols \
614 $(wildcard $(srctree)/arch/$(ARCH)/scripts/strip-symbols)
615
616# 613#
617# INSTALL_MOD_STRIP, if defined, will cause modules to be stripped while 614# INSTALL_MOD_STRIP, if defined, will cause modules to be
618# they get installed. If INSTALL_MOD_STRIP is '1', then the default 615# stripped after they are installed. If INSTALL_MOD_STRIP is '1', then
619# options (see below) will be used. Otherwise, INSTALL_MOD_STRIP will 616# the default option --strip-debug will be used. Otherwise,
620# be used as the option(s) to the objcopy command. 617# INSTALL_MOD_STRIP will used as the options to the strip command.
618
621ifdef INSTALL_MOD_STRIP 619ifdef INSTALL_MOD_STRIP
622ifeq ($(INSTALL_MOD_STRIP),1) 620ifeq ($(INSTALL_MOD_STRIP),1)
623mod_strip_cmd = $(OBJCOPY) --strip-debug 621mod_strip_cmd = $(STRIP) --strip-debug
624ifeq ($(CONFIG_KALLSYMS_ALL),$(CONFIG_KALLSYMS_STRIP_GENERATED))
625mod_strip_cmd += --wildcard $(addprefix --strip-symbols ,$(strip-symbols))
626endif
627else 622else
628mod_strip_cmd = $(OBJCOPY) $(INSTALL_MOD_STRIP) 623mod_strip_cmd = $(STRIP) $(INSTALL_MOD_STRIP)
629endif # INSTALL_MOD_STRIP=1 624endif # INSTALL_MOD_STRIP=1
630else 625else
631mod_strip_cmd = false 626mod_strip_cmd = true
632endif # INSTALL_MOD_STRIP 627endif # INSTALL_MOD_STRIP
633export mod_strip_cmd 628export mod_strip_cmd
634 629
@@ -758,7 +753,6 @@ last_kallsyms := 2
758endif 753endif
759 754
760kallsyms.o := .tmp_kallsyms$(last_kallsyms).o 755kallsyms.o := .tmp_kallsyms$(last_kallsyms).o
761kallsyms.h := $(wildcard include/config/kallsyms/*.h) $(wildcard include/config/kallsyms/*/*.h)
762 756
763define verify_kallsyms 757define verify_kallsyms
764 $(Q)$(if $($(quiet)cmd_sysmap), \ 758 $(Q)$(if $($(quiet)cmd_sysmap), \
@@ -783,41 +777,24 @@ endef
783 777
784# Generate .S file with all kernel symbols 778# Generate .S file with all kernel symbols
785quiet_cmd_kallsyms = KSYM $@ 779quiet_cmd_kallsyms = KSYM $@
786 cmd_kallsyms = { test $* -eq 0 || $(NM) -n $<; } \ 780 cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) \
787 | $(KALLSYMS) $(if $(CONFIG_KALLSYMS_ALL),--all-symbols) >$@ 781 $(if $(CONFIG_KALLSYMS_ALL),--all-symbols) > $@
788
789quiet_cmd_kstrip = STRIP $@
790 cmd_kstrip = $(OBJCOPY) --wildcard $(addprefix --strip$(if $(CONFIG_RELOCATABLE),-unneeded)-symbols ,$(filter %/scripts/strip-symbols,$^)) $< $@
791 782
792$(foreach n,0 1 2 3,.tmp_kallsyms$(n).o): KBUILD_AFLAGS += -Wa,--strip-local-absolute 783.tmp_kallsyms1.o .tmp_kallsyms2.o .tmp_kallsyms3.o: %.o: %.S scripts FORCE
793$(foreach n,0 1 2 3,.tmp_kallsyms$(n).o): %.o: %.S scripts FORCE
794 $(call if_changed_dep,as_o_S) 784 $(call if_changed_dep,as_o_S)
795 785
796ifeq ($(CONFIG_KALLSYMS_STRIP_GENERATED),y) 786.tmp_kallsyms%.S: .tmp_vmlinux% $(KALLSYMS)
797strip-ext := .stripped
798endif
799
800.tmp_kallsyms%.S: .tmp_vmlinux%$(strip-ext) $(KALLSYMS) $(kallsyms.h)
801 $(call cmd,kallsyms) 787 $(call cmd,kallsyms)
802 788
803# make -jN seems to have problems with intermediate files, see bug #3330.
804.SECONDARY: $(foreach n,1 2 3,.tmp_vmlinux$(n).stripped)
805.tmp_vmlinux%.stripped: .tmp_vmlinux% $(strip-symbols) $(kallsyms.h)
806 $(call cmd,kstrip)
807
808ifneq ($(CONFIG_DEBUG_INFO),y)
809.tmp_vmlinux%: LDFLAGS_vmlinux += -S
810endif
811# .tmp_vmlinux1 must be complete except kallsyms, so update vmlinux version 789# .tmp_vmlinux1 must be complete except kallsyms, so update vmlinux version
812.tmp_vmlinux%: $(vmlinux-lds) $(vmlinux-all) FORCE 790.tmp_vmlinux1: $(vmlinux-lds) $(vmlinux-all) FORCE
813 $(if $(filter 1,$*),$(call if_changed_rule,ksym_ld),$(call if_changed,vmlinux__)) 791 $(call if_changed_rule,ksym_ld)
814 792
815.tmp_vmlinux0$(strip-ext): 793.tmp_vmlinux2: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms1.o FORCE
816 $(Q)echo "placeholder" >$@ 794 $(call if_changed,vmlinux__)
817 795
818.tmp_vmlinux1: .tmp_kallsyms0.o 796.tmp_vmlinux3: $(vmlinux-lds) $(vmlinux-all) .tmp_kallsyms2.o FORCE
819.tmp_vmlinux2: .tmp_kallsyms1.o 797 $(call if_changed,vmlinux__)
820.tmp_vmlinux3: .tmp_kallsyms2.o
821 798
822# Needs to visit scripts/ before $(KALLSYMS) can be used. 799# Needs to visit scripts/ before $(KALLSYMS) can be used.
823$(KALLSYMS): scripts ; 800$(KALLSYMS): scripts ;