blob: 542c92f5ca4f349577b0d42d377505d09457064c [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
Josh Triplett9a1cb472014-03-10 13:03:10 -070060vmlinux-objs-y := $(obj)/vmlinux.lds $(obj)/head_$(BITS).o $(obj)/misc.o \
Josh Triplett3afed062014-03-10 13:26:10 -070061 $(obj)/string.o $(obj)/cmdline.o \
Josh Triplett9e6abd22014-03-10 13:11:26 -070062 $(obj)/piggy.o $(obj)/cpuflags.o
63
Josh Triplett3afed062014-03-10 13:26:10 -070064vmlinux-objs-$(CONFIG_EARLY_PRINTK) += $(obj)/early_serial_console.o
Kees Cook9b238742016-04-18 09:42:10 -070065vmlinux-objs-$(CONFIG_RANDOMIZE_BASE) += $(obj)/kaslr.o
Matt Fleming291f3632011-12-12 21:27:52 +000066
Matthew Garrett9dead5b2012-07-26 18:00:00 -040067$(obj)/eboot.o: KBUILD_CFLAGS += -fshort-wchar -mno-red-zone
Matthew Garrett9dead5b2012-07-26 18:00:00 -040068
Ard Biesheuvel243b6752014-11-05 17:00:56 +010069vmlinux-objs-$(CONFIG_EFI_STUB) += $(obj)/eboot.o $(obj)/efi_stub_$(BITS).o \
70 $(objtree)/drivers/firmware/efi/libstub/lib.a
Matt Fleming96738c62015-01-13 15:25:00 +000071vmlinux-objs-$(CONFIG_EFI_MIXED) += $(obj)/efi_thunk_$(BITS).o
Matt Fleming291f3632011-12-12 21:27:52 +000072
Josh Triplett9a1cb472014-03-10 13:03:10 -070073$(obj)/vmlinux: $(vmlinux-objs-y) FORCE
Sam Ravnborgdb569af2008-01-30 13:32:30 +010074 $(call if_changed,ld)
75 @:
76
Ian Campbell099e1372008-02-13 20:54:58 +000077OBJCOPYFLAGS_vmlinux.bin := -R .comment -S
Sam Ravnborgdb569af2008-01-30 13:32:30 +010078$(obj)/vmlinux.bin: vmlinux FORCE
79 $(call if_changed,objcopy)
80
Josh Triplett9a1cb472014-03-10 13:03:10 -070081targets += $(patsubst $(obj)/%,%,$(vmlinux-objs-y)) vmlinux.bin.all vmlinux.relocs
Sam Ravnborgdb569af2008-01-30 13:32:30 +010082
H. Peter Anvin6520fe52012-05-08 21:22:24 +030083CMD_RELOCS = arch/x86/tools/relocs
Sam Ravnborgdb569af2008-01-30 13:32:30 +010084quiet_cmd_relocs = RELOCS $@
H. Peter Anvin6520fe52012-05-08 21:22:24 +030085 cmd_relocs = $(CMD_RELOCS) $< > $@;$(CMD_RELOCS) --abs-relocs $<
86$(obj)/vmlinux.relocs: vmlinux FORCE
Sam Ravnborgdb569af2008-01-30 13:32:30 +010087 $(call if_changed,relocs)
88
89vmlinux.bin.all-y := $(obj)/vmlinux.bin
H. Peter Anvin5f11e022009-05-05 22:53:11 -070090vmlinux.bin.all-$(CONFIG_X86_NEED_RELOCS) += $(obj)/vmlinux.relocs
Sam Ravnborgdb569af2008-01-30 13:32:30 +010091
H. Peter Anvin5f11e022009-05-05 22:53:11 -070092$(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE
Sam Ravnborgdb569af2008-01-30 13:32:30 +010093 $(call if_changed,gzip)
H. Peter Anvin5f11e022009-05-05 22:53:11 -070094$(obj)/vmlinux.bin.bz2: $(vmlinux.bin.all-y) FORCE
Alain Knaffae03c492009-01-04 22:46:17 +010095 $(call if_changed,bzip2)
H. Peter Anvin5f11e022009-05-05 22:53:11 -070096$(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y) FORCE
Alain Knaffae03c492009-01-04 22:46:17 +010097 $(call if_changed,lzma)
Lasse Collin30314802011-01-12 17:01:24 -080098$(obj)/vmlinux.bin.xz: $(vmlinux.bin.all-y) FORCE
99 $(call if_changed,xzkern)
Albin Tonnerre13510992010-01-08 14:42:45 -0800100$(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y) FORCE
101 $(call if_changed,lzo)
Kyungsik Leef9b493a2013-07-08 16:01:48 -0700102$(obj)/vmlinux.bin.lz4: $(vmlinux.bin.all-y) FORCE
103 $(call if_changed,lz4)
Sam Ravnborgdb569af2008-01-30 13:32:30 +0100104
H. Peter Anvin283ab1c2009-05-08 15:32:47 -0700105suffix-$(CONFIG_KERNEL_GZIP) := gz
106suffix-$(CONFIG_KERNEL_BZIP2) := bz2
107suffix-$(CONFIG_KERNEL_LZMA) := lzma
Lasse Collin30314802011-01-12 17:01:24 -0800108suffix-$(CONFIG_KERNEL_XZ) := xz
Albin Tonnerre13510992010-01-08 14:42:45 -0800109suffix-$(CONFIG_KERNEL_LZO) := lzo
Kyungsik Leef9b493a2013-07-08 16:01:48 -0700110suffix-$(CONFIG_KERNEL_LZ4) := lz4
Alain Knaffae03c492009-01-04 22:46:17 +0100111
Chris Claytone2e68ae2014-11-22 09:51:10 +0000112RUN_SIZE = $(shell $(OBJDUMP) -h vmlinux | \
Kees Cookd69911a2015-01-26 12:58:35 -0800113 $(CONFIG_SHELL) $(srctree)/arch/x86/tools/calc_run_size.sh)
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700114quiet_cmd_mkpiggy = MKPIGGY $@
Junjie Maoe6023362014-10-31 21:40:38 +0800115 cmd_mkpiggy = $(obj)/mkpiggy $< $(RUN_SIZE) > $@ || ( rm -f $@ ; false )
H. Peter Anvin02a884c2009-05-08 17:42:16 -0700116
117targets += piggy.S
118$(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE
119 $(call if_changed,mkpiggy)