Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

arch: use always-$(KBUILD_BUILTIN) for vmlinux.lds

The extra-y syntax is deprecated. Instead, use always-$(KBUILD_BUILTIN),
which behaves equivalently.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Reviewed-by: Nicolas Schier <n.schier@avm.de>

+21 -21
+1 -1
arch/alpha/kernel/Makefile
··· 3 3 # Makefile for the linux kernel. 4 4 # 5 5 6 - extra-y := vmlinux.lds 6 + always-$(KBUILD_BUILTIN) := vmlinux.lds 7 7 asflags-y := $(KBUILD_CFLAGS) 8 8 ccflags-y := -Wno-sign-compare 9 9
+1 -1
arch/arc/kernel/Makefile
··· 26 26 CFLAGS_fpu.o += -mdpfp 27 27 endif 28 28 29 - extra-y := vmlinux.lds 29 + always-$(KBUILD_BUILTIN) := vmlinux.lds
+1 -1
arch/arm/kernel/Makefile
··· 104 104 105 105 obj-$(CONFIG_GENERIC_CPU_VULNERABILITIES) += spectre.o 106 106 107 - extra-y := vmlinux.lds 107 + always-$(KBUILD_BUILTIN) := vmlinux.lds
+1 -1
arch/arm64/kernel/Makefile
··· 78 78 79 79 obj-y += probes/ 80 80 obj-y += head.o 81 - extra-y += vmlinux.lds 81 + always-$(KBUILD_BUILTIN) += vmlinux.lds 82 82 83 83 ifeq ($(CONFIG_DEBUG_EFI),y) 84 84 AFLAGS_head.o += -DVMLINUX_PATH="\"$(realpath $(objtree)/vmlinux)\""
+1 -1
arch/csky/kernel/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 - extra-y := vmlinux.lds 2 + always-$(KBUILD_BUILTIN) := vmlinux.lds 3 3 4 4 obj-y += head.o entry.o atomic.o signal.o traps.o irq.o time.o vdso.o vdso/ 5 5 obj-y += power.o syscall.o syscall_table.o setup.o
+1 -1
arch/hexagon/kernel/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 - extra-y := vmlinux.lds 2 + always-$(KBUILD_BUILTIN) := vmlinux.lds 3 3 4 4 obj-y += head.o 5 5 obj-$(CONFIG_SMP) += smp.o
+1 -1
arch/loongarch/kernel/Makefile
··· 5 5 6 6 OBJECT_FILES_NON_STANDARD_head.o := y 7 7 8 - extra-y := vmlinux.lds 8 + always-$(KBUILD_BUILTIN) := vmlinux.lds 9 9 10 10 obj-y += head.o cpu-probe.o cacheinfo.o env.o setup.o entry.o genex.o \ 11 11 traps.o irq.o idle.o process.o dma.o mem.o reset.o switch.o \
+1 -1
arch/m68k/kernel/Makefile
··· 3 3 # Makefile for the linux kernel. 4 4 # 5 5 6 - extra-y += vmlinux.lds 6 + always-$(KBUILD_BUILTIN) += vmlinux.lds 7 7 8 8 obj-$(CONFIG_MMU_MOTOROLA) := head.o 9 9 obj-$(CONFIG_SUN3) := sun3-head.o
+1 -1
arch/microblaze/kernel/Makefile
··· 11 11 CFLAGS_REMOVE_process.o = -pg 12 12 endif 13 13 14 - extra-y := vmlinux.lds 14 + always-$(KBUILD_BUILTIN) := vmlinux.lds 15 15 16 16 obj-y += head.o dma.o exceptions.o \ 17 17 hw_exception_handler.o irq.o \
+1 -1
arch/mips/kernel/Makefile
··· 3 3 # Makefile for the Linux/MIPS kernel. 4 4 # 5 5 6 - extra-y := vmlinux.lds 6 + always-$(KBUILD_BUILTIN) := vmlinux.lds 7 7 8 8 obj-y += head.o branch.o cmpxchg.o elf.o entry.o genex.o idle.o irq.o \ 9 9 process.o prom.o ptrace.o reset.o setup.o signal.o \
+1 -1
arch/nios2/kernel/Makefile
··· 3 3 # Makefile for the nios2 linux kernel. 4 4 # 5 5 6 - extra-y += vmlinux.lds 6 + always-$(KBUILD_BUILTIN) += vmlinux.lds 7 7 8 8 obj-y += head.o 9 9 obj-y += cpuinfo.o
+1 -1
arch/openrisc/kernel/Makefile
··· 3 3 # Makefile for the linux kernel. 4 4 # 5 5 6 - extra-y := vmlinux.lds 6 + always-$(KBUILD_BUILTIN) := vmlinux.lds 7 7 8 8 obj-y := head.o setup.o or32_ksyms.o process.o dma.o \ 9 9 traps.o time.o irq.o entry.o ptrace.o signal.o \
+1 -1
arch/parisc/kernel/Makefile
··· 3 3 # Makefile for arch/parisc/kernel 4 4 # 5 5 6 - extra-y := vmlinux.lds 6 + always-$(KBUILD_BUILTIN) := vmlinux.lds 7 7 8 8 obj-y := head.o cache.o pacache.o setup.o pdt.o traps.o time.o irq.o \ 9 9 syscall.o entry.o sys_parisc.o firmware.o \
+1 -1
arch/powerpc/kernel/Makefile
··· 126 126 obj-$(CONFIG_44x) += head_44x.o 127 127 obj-$(CONFIG_PPC_8xx) += head_8xx.o 128 128 obj-$(CONFIG_PPC_85xx) += head_85xx.o 129 - extra-y += vmlinux.lds 129 + always-$(KBUILD_BUILTIN) += vmlinux.lds 130 130 131 131 obj-$(CONFIG_RELOCATABLE) += reloc_$(BITS).o 132 132
+1 -1
arch/riscv/kernel/Makefile
··· 43 43 endif 44 44 endif 45 45 46 - extra-y += vmlinux.lds 46 + always-$(KBUILD_BUILTIN) += vmlinux.lds 47 47 48 48 obj-y += head.o 49 49 obj-y += soc.o
+1 -1
arch/s390/kernel/Makefile
··· 46 46 obj-y += smp.o text_amode31.o stacktrace.o abs_lowcore.o facility.o uv.o wti.o 47 47 obj-y += diag/ 48 48 49 - extra-y += vmlinux.lds 49 + always-$(KBUILD_BUILTIN) += vmlinux.lds 50 50 51 51 obj-$(CONFIG_SYSFS) += nospec-sysfs.o 52 52 CFLAGS_REMOVE_nospec-branch.o += $(CC_FLAGS_EXPOLINE)
+1 -1
arch/sh/kernel/Makefile
··· 3 3 # Makefile for the Linux/SuperH kernel. 4 4 # 5 5 6 - extra-y := vmlinux.lds 6 + always-$(KBUILD_BUILTIN) := vmlinux.lds 7 7 8 8 ifdef CONFIG_FUNCTION_TRACER 9 9 # Do not profile debug and lowlevel utilities
+1 -1
arch/sparc/kernel/Makefile
··· 9 9 # Undefine sparc when processing vmlinux.lds - it is used 10 10 # And teach CPP we are doing $(BITS) builds (for this case) 11 11 CPPFLAGS_vmlinux.lds := -Usparc -m$(BITS) 12 - extra-y += vmlinux.lds 12 + always-$(KBUILD_BUILTIN) += vmlinux.lds 13 13 14 14 ifdef CONFIG_FUNCTION_TRACER 15 15 # Do not profile debug and lowlevel utilities
+1 -1
arch/um/kernel/Makefile
··· 12 12 -DELF_ARCH=$(LDS_ELF_ARCH) \ 13 13 -DELF_FORMAT=$(LDS_ELF_FORMAT) \ 14 14 $(LDS_EXTRA) 15 - extra-y := vmlinux.lds 15 + always-$(KBUILD_BUILTIN) := vmlinux.lds 16 16 17 17 obj-y = config.o exec.o exitcode.o irq.o ksyms.o mem.o \ 18 18 physmem.o process.o ptrace.o reboot.o sigio.o \
+1 -1
arch/x86/kernel/Makefile
··· 3 3 # Makefile for the linux kernel. 4 4 # 5 5 6 - extra-y += vmlinux.lds 6 + always-$(KBUILD_BUILTIN) += vmlinux.lds 7 7 8 8 CPPFLAGS_vmlinux.lds += -U$(UTS_MACHINE) 9 9
+1 -1
arch/xtensa/kernel/Makefile
··· 3 3 # Makefile for the Linux/Xtensa kernel. 4 4 # 5 5 6 - extra-y := vmlinux.lds 6 + always-$(KBUILD_BUILTIN) := vmlinux.lds 7 7 8 8 obj-y := head.o align.o coprocessor.o entry.o irq.o platform.o process.o \ 9 9 ptrace.o setup.o signal.o stacktrace.o syscall.o time.o traps.o \