mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
kbuild: fix vmlinux.o link
We always linked vmliux.o. Remove init/built-in.o dependency so we avoid this Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
parent
b44158de9e
commit
90ebd878a5
1 changed files with 4 additions and 2 deletions
6
Makefile
6
Makefile
|
@ -794,7 +794,7 @@ endif # ifdef CONFIG_KALLSYMS
|
||||||
quiet_cmd_vmlinux-modpost = LD $@
|
quiet_cmd_vmlinux-modpost = LD $@
|
||||||
cmd_vmlinux-modpost = $(LD) $(LDFLAGS) -r -o $@ \
|
cmd_vmlinux-modpost = $(LD) $(LDFLAGS) -r -o $@ \
|
||||||
$(vmlinux-init) --start-group $(vmlinux-main) --end-group \
|
$(vmlinux-init) --start-group $(vmlinux-main) --end-group \
|
||||||
$(filter-out $(vmlinux-init) $(vmlinux-main) $(vmlinux-lds) FORCE ,$^)
|
$(filter-out $(vmlinux-init) $(vmlinux-main) FORCE ,$^)
|
||||||
define rule_vmlinux-modpost
|
define rule_vmlinux-modpost
|
||||||
:
|
:
|
||||||
+$(call cmd,vmlinux-modpost)
|
+$(call cmd,vmlinux-modpost)
|
||||||
|
@ -818,7 +818,9 @@ endif
|
||||||
ifdef CONFIG_KALLSYMS
|
ifdef CONFIG_KALLSYMS
|
||||||
.tmp_vmlinux1: vmlinux.o
|
.tmp_vmlinux1: vmlinux.o
|
||||||
endif
|
endif
|
||||||
vmlinux.o: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) FORCE
|
|
||||||
|
modpost-init := $(filter-out init/built-in.o, $(vmlinux-init))
|
||||||
|
vmlinux.o: $(modpost-init) $(vmlinux-main) FORCE
|
||||||
$(call if_changed_rule,vmlinux-modpost)
|
$(call if_changed_rule,vmlinux-modpost)
|
||||||
|
|
||||||
# The actual objects are generated when descending,
|
# The actual objects are generated when descending,
|
||||||
|
|
Loading…
Reference in a new issue