kbuild: merge KBUILD_VMLINUX_{INIT,MAIN} into KBUILD_VMLINUX_OBJS
The top Makefile does not need to export KBUILD_VMLINUX_INIT and KBUILD_VMLINUX_MAIN separately. Put every built-in.a into KBUILD_VMLINUX_OBJS. The order of $(head-y), $(init-y), $(core-y), ... is still retained. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
dee9495303
commit
d151e9719f
|
@ -232,17 +232,12 @@ KBUILD_LDS
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
The linker script with full path. Assigned by the top-level Makefile.
|
The linker script with full path. Assigned by the top-level Makefile.
|
||||||
|
|
||||||
KBUILD_VMLINUX_INIT
|
KBUILD_VMLINUX_OBJS
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
All object files for the init (first) part of vmlinux.
|
All object files for vmlinux. They are linked to vmlinux in the same
|
||||||
Files specified with KBUILD_VMLINUX_INIT are linked first.
|
order as listed in KBUILD_VMLINUX_OBJS.
|
||||||
|
|
||||||
KBUILD_VMLINUX_MAIN
|
|
||||||
--------------------------------------------------
|
|
||||||
All object files for the main part of vmlinux.
|
|
||||||
|
|
||||||
KBUILD_VMLINUX_LIBS
|
KBUILD_VMLINUX_LIBS
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
All .a "lib" files for vmlinux.
|
All .a "lib" files for vmlinux. KBUILD_VMLINUX_OBJS and KBUILD_VMLINUX_LIBS
|
||||||
KBUILD_VMLINUX_INIT, KBUILD_VMLINUX_MAIN, and KBUILD_VMLINUX_LIBS together
|
together specify all the object files used to link vmlinux.
|
||||||
specify all the object files used to link vmlinux.
|
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -976,15 +976,15 @@ libs-y2 := $(patsubst %/, %/built-in.a, $(filter-out %.a, $(libs-y)))
|
||||||
virt-y := $(patsubst %/, %/built-in.a, $(virt-y))
|
virt-y := $(patsubst %/, %/built-in.a, $(virt-y))
|
||||||
|
|
||||||
# Externally visible symbols (used by link-vmlinux.sh)
|
# Externally visible symbols (used by link-vmlinux.sh)
|
||||||
export KBUILD_VMLINUX_INIT := $(head-y) $(init-y)
|
export KBUILD_VMLINUX_OBJS := $(head-y) $(init-y) $(core-y) $(libs-y2) \
|
||||||
export KBUILD_VMLINUX_MAIN := $(core-y) $(libs-y2) $(drivers-y) $(net-y) $(virt-y)
|
$(drivers-y) $(net-y) $(virt-y)
|
||||||
export KBUILD_VMLINUX_LIBS := $(libs-y1)
|
export KBUILD_VMLINUX_LIBS := $(libs-y1)
|
||||||
export KBUILD_LDS := arch/$(SRCARCH)/kernel/vmlinux.lds
|
export KBUILD_LDS := arch/$(SRCARCH)/kernel/vmlinux.lds
|
||||||
export LDFLAGS_vmlinux
|
export LDFLAGS_vmlinux
|
||||||
# used by scripts/package/Makefile
|
# used by scripts/package/Makefile
|
||||||
export KBUILD_ALLDIRS := $(sort $(filter-out arch/%,$(vmlinux-alldirs)) arch Documentation include samples scripts tools)
|
export KBUILD_ALLDIRS := $(sort $(filter-out arch/%,$(vmlinux-alldirs)) arch Documentation include samples scripts tools)
|
||||||
|
|
||||||
vmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_INIT) $(KBUILD_VMLINUX_MAIN) $(KBUILD_VMLINUX_LIBS)
|
vmlinux-deps := $(KBUILD_LDS) $(KBUILD_VMLINUX_OBJS) $(KBUILD_VMLINUX_LIBS)
|
||||||
|
|
||||||
# Recurse until adjust_autoksyms.sh is satisfied
|
# Recurse until adjust_autoksyms.sh is satisfied
|
||||||
PHONY += autoksyms_recursive
|
PHONY += autoksyms_recursive
|
||||||
|
|
|
@ -3,22 +3,17 @@
|
||||||
#
|
#
|
||||||
# link vmlinux
|
# link vmlinux
|
||||||
#
|
#
|
||||||
# vmlinux is linked from the objects selected by $(KBUILD_VMLINUX_INIT) and
|
# vmlinux is linked from the objects selected by $(KBUILD_VMLINUX_OBJS) and
|
||||||
# $(KBUILD_VMLINUX_MAIN) and $(KBUILD_VMLINUX_LIBS). Most are built-in.a files
|
# $(KBUILD_VMLINUX_LIBS). Most are built-in.a files from top-level directories
|
||||||
# from top-level directories in the kernel tree, others are specified in
|
# in the kernel tree, others are specified in arch/$(ARCH)/Makefile.
|
||||||
# arch/$(ARCH)/Makefile. Ordering when linking is important, and
|
# $(KBUILD_VMLINUX_LIBS) are archives which are linked conditionally
|
||||||
# $(KBUILD_VMLINUX_INIT) must be first. $(KBUILD_VMLINUX_LIBS) are archives
|
# (not within --whole-archive), and do not require symbol indexes added.
|
||||||
# which are linked conditionally (not within --whole-archive), and do not
|
|
||||||
# require symbol indexes added.
|
|
||||||
#
|
#
|
||||||
# vmlinux
|
# vmlinux
|
||||||
# ^
|
# ^
|
||||||
# |
|
# |
|
||||||
# +-< $(KBUILD_VMLINUX_INIT)
|
# +--< $(KBUILD_VMLINUX_OBJS)
|
||||||
# | +--< init/version.o + more
|
# | +--< init/built-in.a drivers/built-in.a mm/built-in.a + more
|
||||||
# |
|
|
||||||
# +--< $(KBUILD_VMLINUX_MAIN)
|
|
||||||
# | +--< drivers/built-in.a mm/built-in.a + more
|
|
||||||
# |
|
# |
|
||||||
# +--< $(KBUILD_VMLINUX_LIBS)
|
# +--< $(KBUILD_VMLINUX_LIBS)
|
||||||
# | +--< lib/lib.a + more
|
# | +--< lib/lib.a + more
|
||||||
|
@ -51,8 +46,7 @@ modpost_link()
|
||||||
local objects
|
local objects
|
||||||
|
|
||||||
objects="--whole-archive \
|
objects="--whole-archive \
|
||||||
${KBUILD_VMLINUX_INIT} \
|
${KBUILD_VMLINUX_OBJS} \
|
||||||
${KBUILD_VMLINUX_MAIN} \
|
|
||||||
--no-whole-archive \
|
--no-whole-archive \
|
||||||
--start-group \
|
--start-group \
|
||||||
${KBUILD_VMLINUX_LIBS} \
|
${KBUILD_VMLINUX_LIBS} \
|
||||||
|
@ -71,8 +65,7 @@ vmlinux_link()
|
||||||
|
|
||||||
if [ "${SRCARCH}" != "um" ]; then
|
if [ "${SRCARCH}" != "um" ]; then
|
||||||
objects="--whole-archive \
|
objects="--whole-archive \
|
||||||
${KBUILD_VMLINUX_INIT} \
|
${KBUILD_VMLINUX_OBJS} \
|
||||||
${KBUILD_VMLINUX_MAIN} \
|
|
||||||
--no-whole-archive \
|
--no-whole-archive \
|
||||||
--start-group \
|
--start-group \
|
||||||
${KBUILD_VMLINUX_LIBS} \
|
${KBUILD_VMLINUX_LIBS} \
|
||||||
|
@ -83,8 +76,7 @@ vmlinux_link()
|
||||||
-T ${lds} ${objects}
|
-T ${lds} ${objects}
|
||||||
else
|
else
|
||||||
objects="-Wl,--whole-archive \
|
objects="-Wl,--whole-archive \
|
||||||
${KBUILD_VMLINUX_INIT} \
|
${KBUILD_VMLINUX_OBJS} \
|
||||||
${KBUILD_VMLINUX_MAIN} \
|
|
||||||
-Wl,--no-whole-archive \
|
-Wl,--no-whole-archive \
|
||||||
-Wl,--start-group \
|
-Wl,--start-group \
|
||||||
${KBUILD_VMLINUX_LIBS} \
|
${KBUILD_VMLINUX_LIBS} \
|
||||||
|
|
Loading…
Reference in New Issue