mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
Makefile: remove redundant tool coverage variables
Now Kbuild provides reasonable defaults for objtool, sanitizers, and profilers. Remove redundant variables. Note: This commit changes the coverage for some objects: - include arch/mips/vdso/vdso-image.o into UBSAN, GCOV, KCOV - include arch/sparc/vdso/vdso-image-*.o into UBSAN - include arch/sparc/vdso/vma.o into UBSAN - include arch/x86/entry/vdso/extable.o into KASAN, KCSAN, UBSAN, GCOV, KCOV - include arch/x86/entry/vdso/vdso-image-*.o into KASAN, KCSAN, UBSAN, GCOV, KCOV - include arch/x86/entry/vdso/vdso32-setup.o into KASAN, KCSAN, UBSAN, GCOV, KCOV - include arch/x86/entry/vdso/vma.o into GCOV, KCOV - include arch/x86/um/vdso/vma.o into KASAN, GCOV, KCOV I believe these are positive effects because all of them are kernel space objects. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Reviewed-by: Kees Cook <keescook@chromium.org> Tested-by: Roberto Sassu <roberto.sassu@huawei.com>
This commit is contained in:
parent
9c2d1328f8
commit
7f7f6f7ad6
34 changed files with 0 additions and 241 deletions
|
@ -5,7 +5,6 @@
|
||||||
# This file is included by the global makefile so that you can add your own
|
# This file is included by the global makefile so that you can add your own
|
||||||
# architecture-specific flags and dependencies.
|
# architecture-specific flags and dependencies.
|
||||||
#
|
#
|
||||||
GCOV_PROFILE := n
|
|
||||||
|
|
||||||
ifdef PHYS_OFFSET
|
ifdef PHYS_OFFSET
|
||||||
add_hex = $(shell printf 0x%x $$(( $(1) + $(2) )) )
|
add_hex = $(shell printf 0x%x $$(( $(1) + $(2) )) )
|
||||||
|
|
|
@ -22,13 +22,6 @@ ifeq ($(CONFIG_ARM_VIRT_EXT),y)
|
||||||
OBJS += hyp-stub.o
|
OBJS += hyp-stub.o
|
||||||
endif
|
endif
|
||||||
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
|
|
||||||
# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Architecture dependencies
|
# Architecture dependencies
|
||||||
#
|
#
|
||||||
|
|
|
@ -33,15 +33,6 @@ else
|
||||||
CFLAGS_vgettimeofday.o = -O2 -include $(c-gettimeofday-y)
|
CFLAGS_vgettimeofday.o = -O2 -include $(c-gettimeofday-y)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Disable gcov profiling for VDSO code
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
|
|
||||||
# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
|
|
||||||
# Force dependency
|
# Force dependency
|
||||||
$(obj)/vdso.o : $(obj)/vdso.so
|
$(obj)/vdso.o : $(obj)/vdso.so
|
||||||
|
|
||||||
|
|
|
@ -19,12 +19,6 @@ KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_SCS), $(KBUILD_CFLAGS))
|
||||||
# disable LTO
|
# disable LTO
|
||||||
KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_LTO), $(KBUILD_CFLAGS))
|
KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_LTO), $(KBUILD_CFLAGS))
|
||||||
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
hostprogs := relacheck
|
hostprogs := relacheck
|
||||||
|
|
||||||
quiet_cmd_piobjcopy = $(quiet_cmd_objcopy)
|
quiet_cmd_piobjcopy = $(quiet_cmd_objcopy)
|
||||||
|
|
|
@ -40,11 +40,6 @@ CFLAGS_REMOVE_vgettimeofday.o = $(CC_FLAGS_FTRACE) -Os $(CC_FLAGS_SCS) \
|
||||||
$(RANDSTRUCT_CFLAGS) $(GCC_PLUGINS_CFLAGS) \
|
$(RANDSTRUCT_CFLAGS) $(GCC_PLUGINS_CFLAGS) \
|
||||||
$(CC_FLAGS_LTO) $(CC_FLAGS_CFI) \
|
$(CC_FLAGS_LTO) $(CC_FLAGS_CFI) \
|
||||||
-Wmissing-prototypes -Wmissing-declarations
|
-Wmissing-prototypes -Wmissing-declarations
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
CFLAGS_vgettimeofday.o = -O2 -mcmodel=tiny -fasynchronous-unwind-tables
|
CFLAGS_vgettimeofday.o = -O2 -mcmodel=tiny -fasynchronous-unwind-tables
|
||||||
|
|
||||||
|
@ -52,9 +47,6 @@ ifneq ($(c-gettimeofday-y),)
|
||||||
CFLAGS_vgettimeofday.o += -include $(c-gettimeofday-y)
|
CFLAGS_vgettimeofday.o += -include $(c-gettimeofday-y)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Disable gcov profiling for VDSO code
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
|
|
||||||
targets += vdso.lds
|
targets += vdso.lds
|
||||||
CPPFLAGS_vdso.lds += -P -C -U$(ARCH)
|
CPPFLAGS_vdso.lds += -P -C -U$(ARCH)
|
||||||
|
|
||||||
|
|
|
@ -97,16 +97,3 @@ KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_FTRACE) $(CC_FLAGS_SCS) $(CC_FLAGS_CFI)
|
||||||
# causes a build failure. Remove profile optimization flags.
|
# causes a build failure. Remove profile optimization flags.
|
||||||
KBUILD_CFLAGS := $(filter-out -fprofile-sample-use=% -fprofile-use=%, $(KBUILD_CFLAGS))
|
KBUILD_CFLAGS := $(filter-out -fprofile-sample-use=% -fprofile-use=%, $(KBUILD_CFLAGS))
|
||||||
KBUILD_CFLAGS += -fno-asynchronous-unwind-tables -fno-unwind-tables
|
KBUILD_CFLAGS += -fno-asynchronous-unwind-tables -fno-unwind-tables
|
||||||
|
|
||||||
# KVM nVHE code is run at a different exception code with a different map, so
|
|
||||||
# compiler instrumentation that inserts callbacks or checks into the code may
|
|
||||||
# cause crashes. Just disable it.
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
# Skip objtool checking for this directory because nVHE code is compiled with
|
|
||||||
# non-standard build rules.
|
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
|
|
|
@ -23,10 +23,6 @@ obj-vdso := $(addprefix $(obj)/, $(obj-vdso))
|
||||||
obj-y += vdso.o vdso-syms.o
|
obj-y += vdso.o vdso-syms.o
|
||||||
CPPFLAGS_vdso.lds += -P -C -U$(ARCH)
|
CPPFLAGS_vdso.lds += -P -C -U$(ARCH)
|
||||||
|
|
||||||
# Disable gcov profiling for VDSO code
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
# Force dependency
|
# Force dependency
|
||||||
$(obj)/vdso.o: $(obj)/vdso.so
|
$(obj)/vdso.o: $(obj)/vdso.so
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,6 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
# Objects to go into the VDSO.
|
# Objects to go into the VDSO.
|
||||||
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
|
|
||||||
# Include the generic Makefile to check the built vdso.
|
# Include the generic Makefile to check the built vdso.
|
||||||
include $(srctree)/lib/vdso/Makefile
|
include $(srctree)/lib/vdso/Makefile
|
||||||
|
|
||||||
|
@ -39,8 +34,6 @@ ldflags-y := -Bsymbolic --no-undefined -soname=linux-vdso.so.1 \
|
||||||
$(filter -E%,$(KBUILD_CFLAGS)) -nostdlib -shared \
|
$(filter -E%,$(KBUILD_CFLAGS)) -nostdlib -shared \
|
||||||
--hash-style=sysv --build-id -T
|
--hash-style=sysv --build-id -T
|
||||||
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Shared build commands.
|
# Shared build commands.
|
||||||
#
|
#
|
||||||
|
|
|
@ -34,12 +34,6 @@ KBUILD_AFLAGS := $(KBUILD_AFLAGS) -D__ASSEMBLY__ \
|
||||||
-DBOOT_HEAP_SIZE=$(BOOT_HEAP_SIZE) \
|
-DBOOT_HEAP_SIZE=$(BOOT_HEAP_SIZE) \
|
||||||
-DKERNEL_ENTRY=$(VMLINUX_ENTRY_ADDRESS)
|
-DKERNEL_ENTRY=$(VMLINUX_ENTRY_ADDRESS)
|
||||||
|
|
||||||
# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
|
|
||||||
# decompressor objects (linked with vmlinuz)
|
# decompressor objects (linked with vmlinuz)
|
||||||
vmlinuzobjs-y := $(obj)/head.o $(obj)/decompress.o $(obj)/string.o $(obj)/bswapsi.o
|
vmlinuzobjs-y := $(obj)/head.o $(obj)/decompress.o $(obj)/string.o $(obj)/bswapsi.o
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
# Objects to go into the VDSO.
|
# Objects to go into the VDSO.
|
||||||
|
|
||||||
# Sanitizer runtimes are unavailable and cannot be linked here.
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
|
|
||||||
# Include the generic Makefile to check the built vdso.
|
# Include the generic Makefile to check the built vdso.
|
||||||
include $(srctree)/lib/vdso/Makefile
|
include $(srctree)/lib/vdso/Makefile
|
||||||
|
|
||||||
|
@ -60,10 +57,6 @@ ldflags-y := -Bsymbolic --no-undefined -soname=linux-vdso.so.1 \
|
||||||
|
|
||||||
CFLAGS_REMOVE_vdso.o = $(CC_FLAGS_FTRACE)
|
CFLAGS_REMOVE_vdso.o = $(CC_FLAGS_FTRACE)
|
||||||
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
# Check that we don't have PIC 'jalr t9' calls left
|
# Check that we don't have PIC 'jalr t9' calls left
|
||||||
quiet_cmd_vdso_mips_check = VDSOCHK $@
|
quiet_cmd_vdso_mips_check = VDSOCHK $@
|
||||||
cmd_vdso_mips_check = if $(OBJDUMP) --disassemble $@ | grep -E -h "jalr.*t9" > /dev/null; \
|
cmd_vdso_mips_check = if $(OBJDUMP) --disassemble $@ | grep -E -h "jalr.*t9" > /dev/null; \
|
||||||
|
|
|
@ -5,10 +5,6 @@
|
||||||
# create a compressed self-extracting vmlinux image from the original vmlinux
|
# create a compressed self-extracting vmlinux image from the original vmlinux
|
||||||
#
|
#
|
||||||
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
|
|
||||||
OBJECTS := head.o real2.o firmware.o misc.o piggy.o
|
OBJECTS := head.o real2.o firmware.o misc.o piggy.o
|
||||||
targets := vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2
|
targets := vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2
|
||||||
targets += vmlinux.bin.xz vmlinux.bin.lzma vmlinux.bin.lzo vmlinux.bin.lz4
|
targets += vmlinux.bin.xz vmlinux.bin.lzma vmlinux.bin.lzo vmlinux.bin.lz4
|
||||||
|
|
|
@ -47,12 +47,6 @@ obj-vdso32 := $(addprefix $(obj)/, $(obj-vdso32))
|
||||||
targets += $(obj-vdso64) vdso64.so.dbg vgettimeofday-64.o
|
targets += $(obj-vdso64) vdso64.so.dbg vgettimeofday-64.o
|
||||||
obj-vdso64 := $(addprefix $(obj)/, $(obj-vdso64))
|
obj-vdso64 := $(addprefix $(obj)/, $(obj-vdso64))
|
||||||
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
|
|
||||||
ccflags-y := -fno-common -fno-builtin
|
ccflags-y := -fno-common -fno-builtin
|
||||||
ldflags-y := -Wl,--hash-style=both -nostdlib -shared -z noexecstack $(CLANG_FLAGS)
|
ldflags-y := -Wl,--hash-style=both -nostdlib -shared -z noexecstack $(CLANG_FLAGS)
|
||||||
ldflags-$(CONFIG_LD_IS_LLD) += $(call cc-option,--ld-path=$(LD),-fuse-ld=lld)
|
ldflags-$(CONFIG_LD_IS_LLD) += $(call cc-option,--ld-path=$(LD),-fuse-ld=lld)
|
||||||
|
@ -114,5 +108,3 @@ quiet_cmd_vdso64ld_and_check = VDSO64L $@
|
||||||
cmd_vdso64ld_and_check = $(VDSOCC) $(ldflags-y) $(LD64FLAGS) -o $@ -Wl,-T$(filter %.lds,$^) $(filter %.o,$^); $(cmd_vdso_check)
|
cmd_vdso64ld_and_check = $(VDSOCC) $(ldflags-y) $(LD64FLAGS) -o $@ -Wl,-T$(filter %.lds,$^) $(filter %.o,$^); $(cmd_vdso_check)
|
||||||
quiet_cmd_vdso64as = VDSO64A $@
|
quiet_cmd_vdso64as = VDSO64A $@
|
||||||
cmd_vdso64as = $(VDSOCC) $(a_flags) $(AS64FLAGS) -c -o $@ $<
|
cmd_vdso64as = $(VDSOCC) $(a_flags) $(AS64FLAGS) -c -o $@ $<
|
||||||
|
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
|
|
||||||
targets += trampoline_$(BITS).o purgatory.ro
|
targets += trampoline_$(BITS).o purgatory.ro
|
||||||
|
|
||||||
# When profile-guided optimization is enabled, llvm emits two different
|
# When profile-guided optimization is enabled, llvm emits two different
|
||||||
|
|
|
@ -14,8 +14,6 @@
|
||||||
# Based on the ia64 and arm64 boot/Makefile.
|
# Based on the ia64 and arm64 boot/Makefile.
|
||||||
#
|
#
|
||||||
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
|
OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
|
||||||
OBJCOPYFLAGS_loader.bin :=-O binary
|
OBJCOPYFLAGS_loader.bin :=-O binary
|
||||||
OBJCOPYFLAGS_xipImage :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
|
OBJCOPYFLAGS_xipImage :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
|
||||||
|
|
|
@ -34,12 +34,6 @@ obj-compat_vdso := $(addprefix $(obj)/, $(obj-compat_vdso))
|
||||||
obj-y += compat_vdso.o
|
obj-y += compat_vdso.o
|
||||||
CPPFLAGS_compat_vdso.lds += -P -C -DCOMPAT_VDSO -U$(ARCH)
|
CPPFLAGS_compat_vdso.lds += -P -C -DCOMPAT_VDSO -U$(ARCH)
|
||||||
|
|
||||||
# Disable profiling and instrumentation for VDSO code
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
|
|
||||||
# Force dependency
|
# Force dependency
|
||||||
$(obj)/compat_vdso.o: $(obj)/compat_vdso.so
|
$(obj)/compat_vdso.o: $(obj)/compat_vdso.so
|
||||||
|
|
||||||
|
|
|
@ -17,12 +17,6 @@ KBUILD_CFLAGS += -mcmodel=medany
|
||||||
CFLAGS_cmdline_early.o += -D__NO_FORTIFY
|
CFLAGS_cmdline_early.o += -D__NO_FORTIFY
|
||||||
CFLAGS_lib-fdt_ro.o += -D__NO_FORTIFY
|
CFLAGS_lib-fdt_ro.o += -D__NO_FORTIFY
|
||||||
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
$(obj)/%.pi.o: OBJCOPYFLAGS := --prefix-symbols=__pi_ \
|
$(obj)/%.pi.o: OBJCOPYFLAGS := --prefix-symbols=__pi_ \
|
||||||
--remove-section=.note.gnu.property \
|
--remove-section=.note.gnu.property \
|
||||||
--prefix-alloc-sections=.init.pi
|
--prefix-alloc-sections=.init.pi
|
||||||
|
|
|
@ -39,12 +39,6 @@ endif
|
||||||
CFLAGS_REMOVE_vgettimeofday.o = $(CC_FLAGS_FTRACE) $(CC_FLAGS_SCS)
|
CFLAGS_REMOVE_vgettimeofday.o = $(CC_FLAGS_FTRACE) $(CC_FLAGS_SCS)
|
||||||
CFLAGS_REMOVE_hwprobe.o = $(CC_FLAGS_FTRACE) $(CC_FLAGS_SCS)
|
CFLAGS_REMOVE_hwprobe.o = $(CC_FLAGS_FTRACE) $(CC_FLAGS_SCS)
|
||||||
|
|
||||||
# Disable profiling and instrumentation for VDSO code
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
|
|
||||||
# Force dependency
|
# Force dependency
|
||||||
$(obj)/vdso.o: $(obj)/vdso.so
|
$(obj)/vdso.o: $(obj)/vdso.so
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
|
|
||||||
purgatory-y := purgatory.o sha256.o entry.o string.o ctype.o memcpy.o memset.o
|
purgatory-y := purgatory.o sha256.o entry.o string.o ctype.o memcpy.o memset.o
|
||||||
purgatory-y += strcmp.o strlen.o strncmp.o
|
purgatory-y += strcmp.o strlen.o strncmp.o
|
||||||
|
@ -47,13 +46,6 @@ LDFLAGS_purgatory.ro := -r $(PURGATORY_LDFLAGS)
|
||||||
LDFLAGS_purgatory.chk := $(PURGATORY_LDFLAGS)
|
LDFLAGS_purgatory.chk := $(PURGATORY_LDFLAGS)
|
||||||
targets += purgatory.ro purgatory.chk
|
targets += purgatory.ro purgatory.chk
|
||||||
|
|
||||||
# Sanitizer, etc. runtimes are unavailable and cannot be linked here.
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
# These are adjustments to the compiler flags used for objects that
|
# These are adjustments to the compiler flags used for objects that
|
||||||
# make up the standalone purgatory.ro
|
# make up the standalone purgatory.ro
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
# List of files in the vdso
|
# List of files in the vdso
|
||||||
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
# Include the generic Makefile to check the built vdso.
|
# Include the generic Makefile to check the built vdso.
|
||||||
include $(srctree)/lib/vdso/Makefile
|
include $(srctree)/lib/vdso/Makefile
|
||||||
obj-vdso32 = vdso_user_wrapper-32.o note-32.o
|
obj-vdso32 = vdso_user_wrapper-32.o note-32.o
|
||||||
|
@ -32,12 +30,6 @@ obj-y += vdso32_wrapper.o
|
||||||
targets += vdso32.lds
|
targets += vdso32.lds
|
||||||
CPPFLAGS_vdso32.lds += -P -C -U$(ARCH)
|
CPPFLAGS_vdso32.lds += -P -C -U$(ARCH)
|
||||||
|
|
||||||
# Disable gcov profiling, ubsan and kasan for VDSO code
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
|
|
||||||
# Force dependency (incbin is bad)
|
# Force dependency (incbin is bad)
|
||||||
$(obj)/vdso32_wrapper.o : $(obj)/vdso32.so
|
$(obj)/vdso32_wrapper.o : $(obj)/vdso32.so
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
# List of files in the vdso
|
# List of files in the vdso
|
||||||
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
# Include the generic Makefile to check the built vdso.
|
# Include the generic Makefile to check the built vdso.
|
||||||
include $(srctree)/lib/vdso/Makefile
|
include $(srctree)/lib/vdso/Makefile
|
||||||
obj-vdso64 = vdso_user_wrapper.o note.o
|
obj-vdso64 = vdso_user_wrapper.o note.o
|
||||||
|
@ -37,12 +35,6 @@ obj-y += vdso64_wrapper.o
|
||||||
targets += vdso64.lds
|
targets += vdso64.lds
|
||||||
CPPFLAGS_vdso64.lds += -P -C -U$(ARCH)
|
CPPFLAGS_vdso64.lds += -P -C -U$(ARCH)
|
||||||
|
|
||||||
# Disable gcov profiling, ubsan and kasan for VDSO code
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
|
|
||||||
# Force dependency (incbin is bad)
|
# Force dependency (incbin is bad)
|
||||||
$(obj)/vdso64_wrapper.o : $(obj)/vdso64.so
|
$(obj)/vdso64_wrapper.o : $(obj)/vdso64.so
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
|
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
|
|
||||||
purgatory-y := head.o purgatory.o string.o sha256.o mem.o
|
purgatory-y := head.o purgatory.o string.o sha256.o mem.o
|
||||||
|
|
||||||
targets += $(purgatory-y) purgatory.lds purgatory purgatory.chk purgatory.ro
|
targets += $(purgatory-y) purgatory.lds purgatory purgatory.chk purgatory.ro
|
||||||
|
@ -15,12 +13,6 @@ CFLAGS_sha256.o := -D__DISABLE_EXPORTS -D__NO_FORTIFY
|
||||||
$(obj)/mem.o: $(srctree)/arch/s390/lib/mem.S FORCE
|
$(obj)/mem.o: $(srctree)/arch/s390/lib/mem.S FORCE
|
||||||
$(call if_changed_rule,as_o_S)
|
$(call if_changed_rule,as_o_S)
|
||||||
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
|
|
||||||
KBUILD_CFLAGS := -fno-strict-aliasing -Wall -Wstrict-prototypes
|
KBUILD_CFLAGS := -fno-strict-aliasing -Wall -Wstrict-prototypes
|
||||||
KBUILD_CFLAGS += -Wno-pointer-sign -Wno-sign-compare
|
KBUILD_CFLAGS += -Wno-pointer-sign -Wno-sign-compare
|
||||||
KBUILD_CFLAGS += -fno-zero-initialized-in-bss -fno-builtin -ffreestanding
|
KBUILD_CFLAGS += -fno-zero-initialized-in-bss -fno-builtin -ffreestanding
|
||||||
|
|
|
@ -11,9 +11,6 @@ OBJECTS := head_32.o misc.o cache.o piggy.o \
|
||||||
targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 \
|
targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 \
|
||||||
vmlinux.bin.lzma vmlinux.bin.xz vmlinux.bin.lzo $(OBJECTS)
|
vmlinux.bin.lzma vmlinux.bin.xz vmlinux.bin.lzo $(OBJECTS)
|
||||||
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# IMAGE_OFFSET is the load offset of the compression loader
|
# IMAGE_OFFSET is the load offset of the compression loader
|
||||||
#
|
#
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
#
|
#
|
||||||
# Building vDSO images for sparc.
|
# Building vDSO images for sparc.
|
||||||
#
|
#
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
|
|
||||||
# files to link into the vdso
|
# files to link into the vdso
|
||||||
vobjs-y := vdso-note.o vclock_gettime.o
|
vobjs-y := vdso-note.o vclock_gettime.o
|
||||||
|
@ -106,4 +105,3 @@ quiet_cmd_vdso = VDSO $@
|
||||||
sh $(src)/checkundef.sh '$(OBJDUMP)' '$@'
|
sh $(src)/checkundef.sh '$(OBJDUMP)' '$@'
|
||||||
|
|
||||||
VDSO_LDFLAGS = -shared --hash-style=both --build-id=sha1 -Bsymbolic
|
VDSO_LDFLAGS = -shared --hash-style=both --build-id=sha1 -Bsymbolic
|
||||||
GCOV_PROFILE := n
|
|
||||||
|
|
|
@ -9,19 +9,6 @@
|
||||||
# Changed by many, many contributors over the years.
|
# Changed by many, many contributors over the years.
|
||||||
#
|
#
|
||||||
|
|
||||||
# Sanitizer runtimes are unavailable and cannot be linked for early boot code.
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
KMSAN_SANITIZE := n
|
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
|
|
||||||
# Kernel does not boot with kcov instrumentation here.
|
|
||||||
# One of the problems observed was insertion of __sanitizer_cov_trace_pc()
|
|
||||||
# callback into middle of per-cpu data enabling code. Thus the callback observed
|
|
||||||
# inconsistent state and crashed. We are interested mostly in syscall coverage,
|
|
||||||
# so boot code is not interesting anyway.
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
# If you want to preset the SVGA mode, uncomment the next line and
|
# If you want to preset the SVGA mode, uncomment the next line and
|
||||||
# set SVGA_MODE to whatever number you want.
|
# set SVGA_MODE to whatever number you want.
|
||||||
# Set it to -DSVGA_MODE=NORMAL_VGA if you just want the EGA/VGA mode.
|
# Set it to -DSVGA_MODE=NORMAL_VGA if you just want the EGA/VGA mode.
|
||||||
|
@ -69,8 +56,6 @@ KBUILD_CFLAGS := $(REALMODE_CFLAGS) -D_SETUP
|
||||||
KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
|
KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
|
||||||
KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
|
KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
|
||||||
KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
|
KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
|
||||||
GCOV_PROFILE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
|
|
||||||
$(obj)/bzImage: asflags-y := $(SVGA_MODE)
|
$(obj)/bzImage: asflags-y := $(SVGA_MODE)
|
||||||
|
|
||||||
|
|
|
@ -17,15 +17,6 @@
|
||||||
# (see scripts/Makefile.lib size_append)
|
# (see scripts/Makefile.lib size_append)
|
||||||
# compressed vmlinux.bin.all + u32 size of vmlinux.bin.all
|
# compressed vmlinux.bin.all + u32 size of vmlinux.bin.all
|
||||||
|
|
||||||
# Sanitizer runtimes are unavailable and cannot be linked for early boot code.
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
KMSAN_SANITIZE := n
|
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
|
|
||||||
# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \
|
targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \
|
||||||
vmlinux.bin.xz vmlinux.bin.lzo vmlinux.bin.lz4 vmlinux.bin.zst
|
vmlinux.bin.xz vmlinux.bin.lzo vmlinux.bin.lz4 vmlinux.bin.zst
|
||||||
|
|
||||||
|
@ -59,8 +50,6 @@ KBUILD_CFLAGS += -include $(srctree)/include/linux/hidden.h
|
||||||
CFLAGS_sev.o += -I$(objtree)/arch/x86/lib/
|
CFLAGS_sev.o += -I$(objtree)/arch/x86/lib/
|
||||||
|
|
||||||
KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
|
KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
|
||||||
GCOV_PROFILE := n
|
|
||||||
UBSAN_SANITIZE :=n
|
|
||||||
|
|
||||||
KBUILD_LDFLAGS := -m elf_$(UTS_MACHINE)
|
KBUILD_LDFLAGS := -m elf_$(UTS_MACHINE)
|
||||||
KBUILD_LDFLAGS += $(call ld-option,--no-ld-generated-unwind-info)
|
KBUILD_LDFLAGS += $(call ld-option,--no-ld-generated-unwind-info)
|
||||||
|
|
|
@ -6,20 +6,6 @@
|
||||||
# Include the generic Makefile to check the built vDSO:
|
# Include the generic Makefile to check the built vDSO:
|
||||||
include $(srctree)/lib/vdso/Makefile
|
include $(srctree)/lib/vdso/Makefile
|
||||||
|
|
||||||
# Sanitizer runtimes are unavailable and cannot be linked here.
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KMSAN_SANITIZE_vclock_gettime.o := n
|
|
||||||
KMSAN_SANITIZE_vdso32/vclock_gettime.o := n
|
|
||||||
KMSAN_SANITIZE_vgetcpu.o := n
|
|
||||||
KMSAN_SANITIZE_vdso32/vgetcpu.o := n
|
|
||||||
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
|
|
||||||
# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
# Files to link into the vDSO:
|
# Files to link into the vDSO:
|
||||||
vobjs-y := vdso-note.o vclock_gettime.o vgetcpu.o
|
vobjs-y := vdso-note.o vclock_gettime.o vgetcpu.o
|
||||||
vobjs32-y := vdso32/note.o vdso32/system_call.o vdso32/sigreturn.o
|
vobjs32-y := vdso32/note.o vdso32/system_call.o vdso32/sigreturn.o
|
||||||
|
@ -28,23 +14,12 @@ vobjs-$(CONFIG_X86_SGX) += vsgx.o
|
||||||
|
|
||||||
# Files to link into the kernel:
|
# Files to link into the kernel:
|
||||||
obj-y += vma.o extable.o
|
obj-y += vma.o extable.o
|
||||||
KASAN_SANITIZE_vma.o := y
|
|
||||||
UBSAN_SANITIZE_vma.o := y
|
|
||||||
KCSAN_SANITIZE_vma.o := y
|
|
||||||
|
|
||||||
OBJECT_FILES_NON_STANDARD_vma.o := n
|
|
||||||
OBJECT_FILES_NON_STANDARD_extable.o := n
|
|
||||||
|
|
||||||
# vDSO images to build:
|
# vDSO images to build:
|
||||||
obj-$(CONFIG_X86_64) += vdso-image-64.o
|
obj-$(CONFIG_X86_64) += vdso-image-64.o
|
||||||
obj-$(CONFIG_X86_X32_ABI) += vdso-image-x32.o
|
obj-$(CONFIG_X86_X32_ABI) += vdso-image-x32.o
|
||||||
obj-$(CONFIG_COMPAT_32) += vdso-image-32.o vdso32-setup.o
|
obj-$(CONFIG_COMPAT_32) += vdso-image-32.o vdso32-setup.o
|
||||||
|
|
||||||
OBJECT_FILES_NON_STANDARD_vdso-image-32.o := n
|
|
||||||
OBJECT_FILES_NON_STANDARD_vdso-image-x32.o := n
|
|
||||||
OBJECT_FILES_NON_STANDARD_vdso-image-64.o := n
|
|
||||||
OBJECT_FILES_NON_STANDARD_vdso32-setup.o := n
|
|
||||||
|
|
||||||
vobjs := $(addprefix $(obj)/, $(vobjs-y))
|
vobjs := $(addprefix $(obj)/, $(vobjs-y))
|
||||||
vobjs32 := $(addprefix $(obj)/, $(vobjs32-y))
|
vobjs32 := $(addprefix $(obj)/, $(vobjs32-y))
|
||||||
|
|
||||||
|
@ -180,7 +155,6 @@ quiet_cmd_vdso = VDSO $@
|
||||||
|
|
||||||
VDSO_LDFLAGS = -shared --hash-style=both --build-id=sha1 \
|
VDSO_LDFLAGS = -shared --hash-style=both --build-id=sha1 \
|
||||||
$(call ld-option, --eh-frame-hdr) -Bsymbolic -z noexecstack
|
$(call ld-option, --eh-frame-hdr) -Bsymbolic -z noexecstack
|
||||||
GCOV_PROFILE := n
|
|
||||||
|
|
||||||
quiet_cmd_vdso_and_check = VDSO $@
|
quiet_cmd_vdso_and_check = VDSO $@
|
||||||
cmd_vdso_and_check = $(cmd_vdso); $(cmd_vdso_check)
|
cmd_vdso_and_check = $(cmd_vdso); $(cmd_vdso_check)
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
|
|
||||||
purgatory-y := purgatory.o stack.o setup-x86_$(BITS).o sha256.o entry64.o string.o
|
purgatory-y := purgatory.o stack.o setup-x86_$(BITS).o sha256.o entry64.o string.o
|
||||||
|
|
||||||
|
@ -30,14 +29,6 @@ LDFLAGS_purgatory.ro := -r $(PURGATORY_LDFLAGS)
|
||||||
LDFLAGS_purgatory.chk := $(PURGATORY_LDFLAGS)
|
LDFLAGS_purgatory.chk := $(PURGATORY_LDFLAGS)
|
||||||
targets += purgatory.ro purgatory.chk
|
targets += purgatory.ro purgatory.chk
|
||||||
|
|
||||||
# Sanitizer, etc. runtimes are unavailable and cannot be linked here.
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
KMSAN_SANITIZE := n
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
# These are adjustments to the compiler flags used for objects that
|
# These are adjustments to the compiler flags used for objects that
|
||||||
# make up the standalone purgatory.ro
|
# make up the standalone purgatory.ro
|
||||||
|
|
||||||
|
|
|
@ -7,15 +7,6 @@
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
# Sanitizer runtimes are unavailable and cannot be linked here.
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
KMSAN_SANITIZE := n
|
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
|
|
||||||
# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
always-y := realmode.bin realmode.relocs
|
always-y := realmode.bin realmode.relocs
|
||||||
|
|
||||||
wakeup-objs := wakeup_asm.o wakemain.o video-mode.o
|
wakeup-objs := wakeup_asm.o wakemain.o video-mode.o
|
||||||
|
@ -76,5 +67,3 @@ KBUILD_CFLAGS := $(REALMODE_CFLAGS) -D_SETUP -D_WAKEUP \
|
||||||
-I$(srctree)/arch/x86/boot
|
-I$(srctree)/arch/x86/boot
|
||||||
KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
|
KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
|
||||||
KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
|
KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
|
||||||
GCOV_PROFILE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
|
|
|
@ -3,12 +3,6 @@
|
||||||
# Building vDSO images for x86.
|
# Building vDSO images for x86.
|
||||||
#
|
#
|
||||||
|
|
||||||
# do not instrument on vdso because KASAN is not compatible with user mode
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
|
|
||||||
# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
VDSO64-y := y
|
VDSO64-y := y
|
||||||
|
|
||||||
vdso-install-$(VDSO64-y) += vdso.so
|
vdso-install-$(VDSO64-y) += vdso.so
|
||||||
|
@ -66,4 +60,3 @@ quiet_cmd_vdso = VDSO $@
|
||||||
sh $(src)/checkundef.sh '$(NM)' '$@'
|
sh $(src)/checkundef.sh '$(NM)' '$@'
|
||||||
|
|
||||||
VDSO_LDFLAGS = -fPIC -shared -Wl,--hash-style=sysv -z noexecstack
|
VDSO_LDFLAGS = -fPIC -shared -Wl,--hash-style=sysv -z noexecstack
|
||||||
GCOV_PROFILE := n
|
|
||||||
|
|
|
@ -56,17 +56,6 @@ KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_CFI), $(KBUILD_CFLAGS))
|
||||||
# disable LTO
|
# disable LTO
|
||||||
KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_LTO), $(KBUILD_CFLAGS))
|
KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_LTO), $(KBUILD_CFLAGS))
|
||||||
|
|
||||||
GCOV_PROFILE := n
|
|
||||||
# Sanitizer runtimes are unavailable and cannot be linked here.
|
|
||||||
KASAN_SANITIZE := n
|
|
||||||
KCSAN_SANITIZE := n
|
|
||||||
KMSAN_SANITIZE := n
|
|
||||||
UBSAN_SANITIZE := n
|
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
|
|
||||||
# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
|
|
||||||
KCOV_INSTRUMENT := n
|
|
||||||
|
|
||||||
lib-y := efi-stub-helper.o gop.o secureboot.o tpm.o \
|
lib-y := efi-stub-helper.o gop.o secureboot.o tpm.o \
|
||||||
file.o mem.o random.o randomalloc.o pci.o \
|
file.o mem.o random.o randomalloc.o pci.o \
|
||||||
skip_spaces.o lib-cmdline.o lib-ctype.o \
|
skip_spaces.o lib-cmdline.o lib-ctype.o \
|
||||||
|
|
|
@ -15,10 +15,6 @@ lkdtm-$(CONFIG_PPC_64S_HASH_MMU) += powerpc.o
|
||||||
|
|
||||||
KASAN_SANITIZE_stackleak.o := n
|
KASAN_SANITIZE_stackleak.o := n
|
||||||
|
|
||||||
KASAN_SANITIZE_rodata.o := n
|
|
||||||
KCSAN_SANITIZE_rodata.o := n
|
|
||||||
KCOV_INSTRUMENT_rodata.o := n
|
|
||||||
OBJECT_FILES_NON_STANDARD_rodata.o := y
|
|
||||||
CFLAGS_REMOVE_rodata.o += $(CC_FLAGS_LTO) $(RETHUNK_CFLAGS)
|
CFLAGS_REMOVE_rodata.o += $(CC_FLAGS_LTO) $(RETHUNK_CFLAGS)
|
||||||
|
|
||||||
OBJCOPYFLAGS :=
|
OBJCOPYFLAGS :=
|
||||||
|
|
|
@ -59,6 +59,3 @@ include/generated/utsversion.h: FORCE
|
||||||
|
|
||||||
$(obj)/version-timestamp.o: include/generated/utsversion.h
|
$(obj)/version-timestamp.o: include/generated/utsversion.h
|
||||||
CFLAGS_version-timestamp.o := -include include/generated/utsversion.h
|
CFLAGS_version-timestamp.o := -include include/generated/utsversion.h
|
||||||
KASAN_SANITIZE_version-timestamp.o := n
|
|
||||||
KCSAN_SANITIZE_version-timestamp.o := n
|
|
||||||
GCOV_PROFILE_version-timestamp.o := n
|
|
||||||
|
|
|
@ -18,9 +18,6 @@ quiet_cmd_cc_o_c = CC $@
|
||||||
$(call if_changed_dep,cc_o_c)
|
$(call if_changed_dep,cc_o_c)
|
||||||
|
|
||||||
ifdef CONFIG_MODULES
|
ifdef CONFIG_MODULES
|
||||||
KASAN_SANITIZE_.vmlinux.export.o := n
|
|
||||||
KCSAN_SANITIZE_.vmlinux.export.o := n
|
|
||||||
GCOV_PROFILE_.vmlinux.export.o := n
|
|
||||||
targets += .vmlinux.export.o
|
targets += .vmlinux.export.o
|
||||||
vmlinux: .vmlinux.export.o
|
vmlinux: .vmlinux.export.o
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
# SPDX-License-Identifier: GPL-2.0
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
OBJECT_FILES_NON_STANDARD := y
|
|
||||||
CFLAGS_REMOVE_empty.o += $(CC_FLAGS_LTO)
|
CFLAGS_REMOVE_empty.o += $(CC_FLAGS_LTO)
|
||||||
|
|
||||||
hostprogs-always-y += modpost mk_elfconfig
|
hostprogs-always-y += modpost mk_elfconfig
|
||||||
|
|
Loading…
Add table
Reference in a new issue