1# SPDX-License-Identifier: GPL-2.0 2# 3# linux/arch/x86/boot/compressed/Makefile 4# 5# create a compressed vmlinux image from the original vmlinux 6# 7# vmlinuz is: 8# decompression code (*.o) 9# asm globals (piggy.S), including: 10# vmlinux.bin.(gz|bz2|lzma|...) 11# 12# vmlinux.bin is: 13# vmlinux stripped of debugging and comments 14# vmlinux.bin.all is: 15# vmlinux.bin + vmlinux.relocs 16# vmlinux.bin.(gz|bz2|lzma|...) is: 17# (see scripts/Makefile.lib size_append) 18# compressed vmlinux.bin.all + u32 size of vmlinux.bin.all 19 20# Sanitizer runtimes are unavailable and cannot be linked for early boot code. 21KASAN_SANITIZE := n 22KCSAN_SANITIZE := n 23OBJECT_FILES_NON_STANDARD := y 24 25# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in. 26KCOV_INSTRUMENT := n 27 28targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \ 29 vmlinux.bin.xz vmlinux.bin.lzo vmlinux.bin.lz4 vmlinux.bin.zst 30 31# CLANG_FLAGS must come before any cc-disable-warning or cc-option calls in 32# case of cross compiling, as it has the '--target=' flag, which is needed to 33# avoid errors with '-march=i386', and future flags may depend on the target to 34# be valid. 35KBUILD_CFLAGS := -m$(BITS) -O2 $(CLANG_FLAGS) 36KBUILD_CFLAGS += -fno-strict-aliasing -fPIE 37KBUILD_CFLAGS += -Wundef 38KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING 39cflags-$(CONFIG_X86_32) := -march=i386 40cflags-$(CONFIG_X86_64) := -mcmodel=small -mno-red-zone 41KBUILD_CFLAGS += $(cflags-y) 42KBUILD_CFLAGS += -mno-mmx -mno-sse 43KBUILD_CFLAGS += -ffreestanding -fshort-wchar 44KBUILD_CFLAGS += -fno-stack-protector 45KBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member) 46KBUILD_CFLAGS += $(call cc-disable-warning, gnu) 47KBUILD_CFLAGS += -Wno-pointer-sign 48KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=) 49KBUILD_CFLAGS += -fno-asynchronous-unwind-tables 50KBUILD_CFLAGS += -D__DISABLE_EXPORTS 51# Disable relocation relaxation in case the link is not PIE. 52KBUILD_CFLAGS += $(call as-option,-Wa$(comma)-mrelax-relocations=no) 53KBUILD_CFLAGS += -include $(srctree)/include/linux/hidden.h 54 55# sev.c indirectly inludes inat-table.h which is generated during 56# compilation and stored in $(objtree). Add the directory to the includes so 57# that the compiler finds it even with out-of-tree builds (make O=/some/path). 58CFLAGS_sev.o += -I$(objtree)/arch/x86/lib/ 59 60KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__ 61GCOV_PROFILE := n 62UBSAN_SANITIZE :=n 63 64KBUILD_LDFLAGS := -m elf_$(UTS_MACHINE) 65KBUILD_LDFLAGS += $(call ld-option,--no-ld-generated-unwind-info) 66# Compressed kernel should be built as PIE since it may be loaded at any 67# address by the bootloader. 68LDFLAGS_vmlinux := -pie $(call ld-option, --no-dynamic-linker) 69ifdef CONFIG_LD_ORPHAN_WARN 70LDFLAGS_vmlinux += --orphan-handling=warn 71endif 72LDFLAGS_vmlinux += -z noexecstack 73ifeq ($(CONFIG_LD_IS_BFD),y) 74LDFLAGS_vmlinux += $(call ld-option,--no-warn-rwx-segments) 75endif 76LDFLAGS_vmlinux += -T 77 78hostprogs := mkpiggy 79HOST_EXTRACFLAGS += -I$(srctree)/tools/include 80 81sed-voffset := -e 's/^\([0-9a-fA-F]*\) [ABCDGRSTVW] \(_text\|__bss_start\|_end\)$$/\#define VO_\2 _AC(0x\1,UL)/p' 82 83quiet_cmd_voffset = VOFFSET $@ 84 cmd_voffset = $(NM) $< | sed -n $(sed-voffset) > $@ 85 86targets += ../voffset.h 87 88$(obj)/../voffset.h: vmlinux FORCE 89 $(call if_changed,voffset) 90 91$(obj)/misc.o: $(obj)/../voffset.h 92 93vmlinux-objs-y := $(obj)/vmlinux.lds $(obj)/kernel_info.o $(obj)/head_$(BITS).o \ 94 $(obj)/misc.o $(obj)/string.o $(obj)/cmdline.o $(obj)/error.o \ 95 $(obj)/piggy.o $(obj)/cpuflags.o 96 97vmlinux-objs-$(CONFIG_EARLY_PRINTK) += $(obj)/early_serial_console.o 98vmlinux-objs-$(CONFIG_RANDOMIZE_BASE) += $(obj)/kaslr.o 99ifdef CONFIG_X86_64 100 vmlinux-objs-y += $(obj)/ident_map_64.o 101 vmlinux-objs-y += $(obj)/idt_64.o $(obj)/idt_handlers_64.o 102 vmlinux-objs-y += $(obj)/mem_encrypt.o 103 vmlinux-objs-y += $(obj)/pgtable_64.o 104 vmlinux-objs-$(CONFIG_AMD_MEM_ENCRYPT) += $(obj)/sev.o 105endif 106 107vmlinux-objs-$(CONFIG_ACPI) += $(obj)/acpi.o 108vmlinux-objs-$(CONFIG_INTEL_TDX_GUEST) += $(obj)/tdx.o $(obj)/tdcall.o 109 110vmlinux-objs-$(CONFIG_EFI_MIXED) += $(obj)/efi_thunk_$(BITS).o 111vmlinux-objs-$(CONFIG_EFI) += $(obj)/efi.o 112efi-obj-$(CONFIG_EFI_STUB) = $(objtree)/drivers/firmware/efi/libstub/lib.a 113 114$(obj)/vmlinux: $(vmlinux-objs-y) $(efi-obj-y) FORCE 115 $(call if_changed,ld) 116 117OBJCOPYFLAGS_vmlinux.bin := -R .comment -S 118$(obj)/vmlinux.bin: vmlinux FORCE 119 $(call if_changed,objcopy) 120 121targets += $(patsubst $(obj)/%,%,$(vmlinux-objs-y)) vmlinux.bin.all vmlinux.relocs 122 123CMD_RELOCS = arch/x86/tools/relocs 124quiet_cmd_relocs = RELOCS $@ 125 cmd_relocs = $(CMD_RELOCS) $< > $@;$(CMD_RELOCS) --abs-relocs $< 126$(obj)/vmlinux.relocs: vmlinux FORCE 127 $(call if_changed,relocs) 128 129vmlinux.bin.all-y := $(obj)/vmlinux.bin 130vmlinux.bin.all-$(CONFIG_X86_NEED_RELOCS) += $(obj)/vmlinux.relocs 131 132$(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE 133 $(call if_changed,gzip) 134$(obj)/vmlinux.bin.bz2: $(vmlinux.bin.all-y) FORCE 135 $(call if_changed,bzip2_with_size) 136$(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y) FORCE 137 $(call if_changed,lzma_with_size) 138$(obj)/vmlinux.bin.xz: $(vmlinux.bin.all-y) FORCE 139 $(call if_changed,xzkern_with_size) 140$(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y) FORCE 141 $(call if_changed,lzo_with_size) 142$(obj)/vmlinux.bin.lz4: $(vmlinux.bin.all-y) FORCE 143 $(call if_changed,lz4_with_size) 144$(obj)/vmlinux.bin.zst: $(vmlinux.bin.all-y) FORCE 145 $(call if_changed,zstd22_with_size) 146 147suffix-$(CONFIG_KERNEL_GZIP) := gz 148suffix-$(CONFIG_KERNEL_BZIP2) := bz2 149suffix-$(CONFIG_KERNEL_LZMA) := lzma 150suffix-$(CONFIG_KERNEL_XZ) := xz 151suffix-$(CONFIG_KERNEL_LZO) := lzo 152suffix-$(CONFIG_KERNEL_LZ4) := lz4 153suffix-$(CONFIG_KERNEL_ZSTD) := zst 154 155quiet_cmd_mkpiggy = MKPIGGY $@ 156 cmd_mkpiggy = $(obj)/mkpiggy $< > $@ 157 158targets += piggy.S 159$(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE 160 $(call if_changed,mkpiggy) 161