mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
d503ac531a
Commita0f97e06a4
("kbuild: enable 'make CFLAGS=...' to add additional options to CC") renamed CFLAGS to KBUILD_CFLAGS. Commit222d394d30
("kbuild: enable 'make AFLAGS=...' to add additional options to AS") renamed AFLAGS to KBUILD_AFLAGS. Commit06c5040cdb
("kbuild: enable 'make CPPFLAGS=...' to add additional options to CPP") renamed CPPFLAGS to KBUILD_CPPFLAGS. For some reason, LDFLAGS was not renamed. Using a well-known variable like LDFLAGS may result in accidental override of the variable. Kbuild generally uses KBUILD_ prefixed variables for the internally appended options, so here is one more conversion to sanitize the naming convention. I did not touch Makefiles under tools/ since the tools build system is a different world. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Reviewed-by: Palmer Dabbelt <palmer@sifive.com>
35 lines
884 B
Makefile
35 lines
884 B
Makefile
#
|
|
# This file is subject to the terms and conditions of the GNU General Public
|
|
# License. See the file "COPYING" in the main directory of this archive
|
|
# for more details.
|
|
#
|
|
|
|
ifeq ($(BIG_ENDIAN),1)
|
|
OBJCOPY_ARGS := -O elf32-xtensa-be
|
|
else
|
|
OBJCOPY_ARGS := -O elf32-xtensa-le
|
|
endif
|
|
|
|
export OBJCOPY_ARGS
|
|
export CPPFLAGS_boot.lds += -P -C
|
|
export KBUILD_AFLAGS += -mtext-section-literals
|
|
|
|
boot-y := bootstrap.o
|
|
|
|
OBJS := $(addprefix $(obj)/,$(boot-y))
|
|
|
|
$(obj)/Image.o: vmlinux.bin $(OBJS)
|
|
$(Q)$(OBJCOPY) $(OBJCOPY_ARGS) -R .comment \
|
|
--add-section image=vmlinux.bin \
|
|
--set-section-flags image=contents,alloc,load,load,data \
|
|
$(OBJS) $@
|
|
|
|
$(obj)/../Image.elf: $(obj)/Image.o $(obj)/boot.lds
|
|
$(Q)$(LD) $(KBUILD_LDFLAGS) $(LDFLAGS_vmlinux) \
|
|
-T $(obj)/boot.lds \
|
|
--build-id=none \
|
|
-o $@ $(obj)/Image.o
|
|
$(Q)$(kecho) ' Kernel: $@ is ready'
|
|
|
|
all Image: $(obj)/../Image.elf
|