blob: cfdd8c3f8af2e095b0c9e3388c17af834e0589b9 [file] [log] [blame]
Sam Ravnborgdb569af2008-01-30 13:32:30 +01001#
2# linux/arch/x86/boot/compressed/Makefile
3#
4# create a compressed vmlinux image from the original vmlinux
5#
Kees Cookfb7183e2014-10-31 09:22:04 -07006# vmlinuz is:
7# decompression code (*.o)
8# asm globals (piggy.S), including:
9# vmlinux.bin.(gz|bz2|lzma|...)
10#
11# vmlinux.bin is:
12# vmlinux stripped of debugging and comments
13# vmlinux.bin.all is:
14# vmlinux.bin + vmlinux.relocs
15# vmlinux.bin.(gz|bz2|lzma|...) is:
16# (see scripts/Makefile.lib size_append)
17# compressed vmlinux.bin.all + u32 size of vmlinux.bin.all
Sam Ravnborgdb569af2008-01-30 13:32:30 +010018
Josh Poimboeufc0dd6716862016-02-28 22:22:34 -060019KASAN_SANITIZE := n
20OBJECT_FILES_NON_STANDARD := y
Andrey Ryabininef7f0d62015-02-13 14:39:25 -080021
Dmitry Vyukov5c9a8752016-03-22 14:27:30 -070022# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
23KCOV_INSTRUMENT := n
24
Kyungsik Leef9b493a2013-07-08 16:01:48 -070025targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \
26 vmlinux.bin.xz vmlinux.bin.lzo vmlinux.bin.lz4
Sam Ravnborgdb569af2008-01-30 13:32:30 +010027
28KBUILD_CFLAGS := -m$(BITS) -D__KERNEL__ $(LINUX_INCLUDE) -O2
H.J. Lu6d92bc92016-03-16 20:04:35 -070029KBUILD_CFLAGS += -fno-strict-aliasing $(call cc-option, -fPIE, -fPIC)
H. Peter Anvin95a38f32009-04-01 17:35:00 -070030KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING
H. Peter Anvin17a2a9b2009-12-25 15:40:38 -080031cflags-$(CONFIG_X86_32) := -march=i386
Sam Ravnborgdb569af2008-01-30 13:32:30 +010032cflags-$(CONFIG_X86_64) := -mcmodel=small
33KBUILD_CFLAGS += $(cflags-y)
H. Peter Anvin8b3b0052013-12-09 15:43:38 -080034KBUILD_CFLAGS += -mno-mmx -mno-sse
Sam Ravnborgdb569af2008-01-30 13:32:30 +010035KBUILD_CFLAGS += $(call cc-option,-ffreestanding)
36KBUILD_CFLAGS += $(call cc-option,-fno-stack-protector)
37
38KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
Peter Oberparleiter7bf99fb2009-06-17 16:28:09 -070039GCOV_PROFILE := n
Andrey Ryabininc6d30852016-01-20 15:00:55 -080040UBSAN_SANITIZE :=n
Sam Ravnborgdb569af2008-01-30 13:32:30 +010041
42LDFLAGS := -m elf_$(UTS_MACHINE)
H.J. Lu6d92bc92016-03-16 20:04:35 -070043ifeq ($(CONFIG_RELOCATABLE),y)
44# If kernel is relocatable, build compressed kernel as PIE.
45ifeq ($(CONFIG_X86_32),y)
46LDFLAGS += $(call ld-option, -pie) $(call ld-option, --no-dynamic-linker)
47else
48# To build 64-bit compressed kernel as PIE, we disable relocation
49# overflow check to avoid relocation overflow error with a new linker
50# command-line option, -z noreloc-overflow.
51LDFLAGS += $(shell $(LD) --help 2>&1 | grep -q "\-z noreloc-overflow" \
52 && echo "-z noreloc-overflow -pie --no-dynamic-linker")
53endif
54endif
Sam Ravnborgdb569af2008-01-30 13:32:30 +010055LDFLAGS_vmlinux := -T
56
H. Peter Anvin02a884c2009-05-08 17:42:16 -070057hostprogs-y := mkpiggy
Matt Fleming12871c52012-02-28 13:37:22 +000058HOST_EXTRACFLAGS += -I$(srctree)/tools/include
H. Peter Anvin02a884c2009-05-08 17:42:16 -070059
Yinghai Lu4abf0612016-04-28 17:09:08 -070060sed-voffset := -e 's/^\([0-9a-fA-F]*\) [ABCDGRSTVW] \(_text\|__bss_start\|_end\)$$/\#define VO_\2 _AC(0x\1,UL)/p'
Yinghai Lu67b66622016-04-28 17:09:06 -070061
62quiet_cmd_voffset = VOFFSET $@
63 cmd_voffset = $(NM) $< | sed -n $(sed-voffset) > $@
64
65targets += ../voffset.h
66
67$(obj)/../voffset.h: vmlinux FORCE
68 $(call if_changed,voffset)
69
70$(obj)/misc.o: $(obj)/../voffset.h
71
Josh Triplett9a1cb472014-03-10 13:03:10 -070072vmlinux-objs-y := $(obj)/vmlinux.lds $(obj)/head_$(BITS).o $(obj)/misc.o \
Kees Cookdc425a62016-05-02 15:51:00 -070073 $(obj)/string.o $(obj)/cmdline.o $(obj)/error.o \
Josh Triplett9e6abd22014-03-10 13:11:26 -070074 $(obj)/piggy.o $(obj)/cpuflags.o
75
Josh Triplett3afed062014-03-10 13:26:10 -070076vmlinux-objs-$(CONFIG_EARLY_PRINTK) += $(obj)/early_serial_console.o
Kees Cook9b238742016-04-18 09:42:10 -070077vmlinux-objs-$(CONFIG_RANDOMIZE_BASE) += $(obj)/kaslr.o
Kees Cook3a947072016-05-06 15:01:35 -070078ifdef CONFIG_X86_64
79 vmlinux-objs-$(CONFIG_RANDOMIZE_BASE) += $(obj)/pagetable.o
80endif
Matt Fleming291f3632011-12-12 21:27:52 +000081
Matthew Garrett9dead5b2012-07-26 18:00:00 -040082$(obj)/eboot.o: KBUILD_CFLAGS += -fshort-wchar -mno-red-zone
Matthew Garrett9dead5b2012-07-26 18:00:00 -040083
Ard Biesheuvel243b6752014-11-05 17:00:56 +010084vmlinux-objs-$(CONFIG_EFI_STUB) += $(obj)/eboot.o $(obj)/efi_stub_$(BITS).o \
85 $(objtree)/drivers/firmware/efi/libstub/lib.a
Matt Fleming96738c62015-01-13 15:25:00 +000086vmlinux-objs-$(CONFIG_EFI_MIXED) += $(obj)/efi_thunk_$(BITS).o
Matt Fleming291f3632011-12-12 21:27:52 +000087
Josh Triplett9a1cb472014-03-10 13:03:10 -070088$(obj)/vmlinux: $(vmlinux-objs-y) FORCE
Sam Ravnborgdb569af2008-01-30 13:32:30 +010089 $(call if_changed,ld)
90 @:
91
Ian Campbell099e1372008-02-13 20:54:58 +000092OBJCOPYFLAGS_vmlinux.bin := -R .comment -S
Sam Ravnborgdb569af2008-01-30 13:32:30 +010093$(obj)/vmlinux.bin: vmlinux FORCE
94 $(call if_changed,objcopy)
95
Josh Triplett9a1cb472014-03-10 13:03:10 -070096targets += $(patsubst $(obj)/%,%,$(vmlinux-objs-y)) vmlinux.bin.all vmlinux.relocs
Sam Ravnborgdb569af2008-01-30 13:32:30 +010097
H. Peter Anvin6520fe52012-05-08 21:22:24 +030098CMD_RELOCS = arch/x86/tools/relocs
Sam Ravnborgdb569af2008-01-30 13:32:30 +010099quiet_cmd_relocs = RELOCS $@
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300100 cmd_relocs = $(CMD_RELOCS) $< > $@;$(CMD_RELOCS) --abs-relocs $<
101$(obj)/vmlinux.relocs: vmlinux FORCE
Sam Ravnborgdb569af2008-01-30 13:32:30 +0100102 $(call if_changed,relocs)
103
104vmlinux.bin.all-y := $(obj)/vmlinux.bin
H. Peter Anvin5f11e022009-05-05 22:53:11 -0700105vmlinux.bin.all-$(CONFIG_X86_NEED_RELOCS) += $(obj)/vmlinux.relocs
Sam Ravnborgdb569af2008-01-30 13:32:30 +0100106
H. Peter Anvin5f11e022009-05-05 22:53:11 -0700107$(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE
Sam Ravnborgdb569af2008-01-30 13:32:30 +0100108 $(call if_changed,gzip)
H. Peter Anvin5f11e022009-05-05 22:53:11 -0700109$(obj)/vmlinux.bin.bz2: $(vmlinux.bin.all-y) FORCE
Alain Knaffae03c492009-01-04 22:46:17 +0100110 $(call if_changed,bzip2)
H. Peter Anvin5f11e022009-05-05 22:53:11 -0700111$(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y) FORCE
Alain Knaffae03c492009-01-04 22:46:17 +0100112 $(call if_changed,lzma)
Lasse Collin30314802011-01-12 17:01:24 -0800113$(obj)/vmlinux.bin.xz: $(vmlinux.bin.all-y) FORCE
114 $(call if_changed,xzkern)
Albin Tonnerre13510992010-01-08 14:42:45 -0800115$(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y) FORCE
116 $(call if_changed,lzo)
Kyungsik Leef9b493a2013-07-08 16:01:48 -0700117$(obj)/vmlinux.bin.lz4: $(vmlinux.bin.all-y) FORCE
118 $(call if_changed,lz4)
Sam Ravnborgdb569af2008-01-30 13:32:30 +0100119
H. Peter Anvin283ab1c2009-05-08 15:32:47 -0700120suffix-$(CONFIG_KERNEL_GZIP) := gz
121suffix-$(CONFIG_KERNEL_BZIP2) := bz2
122suffix-$(CONFIG_KERNEL_LZMA) := lzma
Lasse Collin30314802011-01-12 17:01:24 -0800123suffix-$(CONFIG_KERNEL_XZ) := xz
Albin Tonnerre13510992010-01-08 14:42:45 -0800124suffix-$(CONFIG_KERNEL_LZO) := lzo
Kyungsik Leef9b493a2013-07-08 16:01:48 -0700125suffix-$(CONFIG_KERNEL_LZ4) := lz4
Alain Knaffae03c492009-01-04 22:46:17 +0100126
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700127quiet_cmd_mkpiggy = MKPIGGY $@
Yinghai Lu4d2d5422016-04-28 17:09:07 -0700128 cmd_mkpiggy = $(obj)/mkpiggy $< > $@ || ( rm -f $@ ; false )
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700129
130targets += piggy.S
131$(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE
132 $(call if_changed,mkpiggy)