aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d3634cd6fe35..5cf825819533 100644
--- a/Makefile
+++ b/Makefile
@@ -794,7 +794,7 @@ endif # ifdef CONFIG_KALLSYMS
794quiet_cmd_vmlinux-modpost = LD $@ 794quiet_cmd_vmlinux-modpost = LD $@
795 cmd_vmlinux-modpost = $(LD) $(LDFLAGS) -r -o $@ \ 795 cmd_vmlinux-modpost = $(LD) $(LDFLAGS) -r -o $@ \
796 $(vmlinux-init) --start-group $(vmlinux-main) --end-group \ 796 $(vmlinux-init) --start-group $(vmlinux-main) --end-group \
797 $(filter-out $(vmlinux-init) $(vmlinux-main) $(vmlinux-lds) FORCE ,$^) 797 $(filter-out $(vmlinux-init) $(vmlinux-main) FORCE ,$^)
798define rule_vmlinux-modpost 798define rule_vmlinux-modpost
799 : 799 :
800 +$(call cmd,vmlinux-modpost) 800 +$(call cmd,vmlinux-modpost)
@@ -818,7 +818,9 @@ endif
818ifdef CONFIG_KALLSYMS 818ifdef CONFIG_KALLSYMS
819.tmp_vmlinux1: vmlinux.o 819.tmp_vmlinux1: vmlinux.o
820endif 820endif
821vmlinux.o: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) FORCE 821
822modpost-init := $(filter-out init/built-in.o, $(vmlinux-init))
823vmlinux.o: $(modpost-init) $(vmlinux-main) FORCE
822 $(call if_changed_rule,vmlinux-modpost) 824 $(call if_changed_rule,vmlinux-modpost)
823 825
824# The actual objects are generated when descending, 826# The actual objects are generated when descending,