Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 1 | # |
| 2 | # linux/arch/x86/boot/compressed/Makefile |
| 3 | # |
| 4 | # create a compressed vmlinux image from the original vmlinux |
| 5 | # |
| 6 | |
Jan Beulich | 9187082 | 2013-04-03 15:47:33 +0100 | [diff] [blame^] | 7 | targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma vmlinux.bin.xz vmlinux.bin.lzo |
Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 8 | |
| 9 | KBUILD_CFLAGS := -m$(BITS) -D__KERNEL__ $(LINUX_INCLUDE) -O2 |
| 10 | KBUILD_CFLAGS += -fno-strict-aliasing -fPIC |
H. Peter Anvin | 95a38f3 | 2009-04-01 17:35:00 -0700 | [diff] [blame] | 11 | KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING |
H. Peter Anvin | 17a2a9b | 2009-12-25 15:40:38 -0800 | [diff] [blame] | 12 | cflags-$(CONFIG_X86_32) := -march=i386 |
Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 13 | cflags-$(CONFIG_X86_64) := -mcmodel=small |
| 14 | KBUILD_CFLAGS += $(cflags-y) |
| 15 | KBUILD_CFLAGS += $(call cc-option,-ffreestanding) |
| 16 | KBUILD_CFLAGS += $(call cc-option,-fno-stack-protector) |
| 17 | |
| 18 | KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__ |
Peter Oberparleiter | 7bf99fb | 2009-06-17 16:28:09 -0700 | [diff] [blame] | 19 | GCOV_PROFILE := n |
Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 20 | |
| 21 | LDFLAGS := -m elf_$(UTS_MACHINE) |
| 22 | LDFLAGS_vmlinux := -T |
| 23 | |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 24 | hostprogs-y := mkpiggy |
Matt Fleming | 12871c5 | 2012-02-28 13:37:22 +0000 | [diff] [blame] | 25 | HOST_EXTRACFLAGS += -I$(srctree)/tools/include |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 26 | |
Matt Fleming | 291f363 | 2011-12-12 21:27:52 +0000 | [diff] [blame] | 27 | VMLINUX_OBJS = $(obj)/vmlinux.lds $(obj)/head_$(BITS).o $(obj)/misc.o \ |
| 28 | $(obj)/string.o $(obj)/cmdline.o $(obj)/early_serial_console.o \ |
| 29 | $(obj)/piggy.o |
| 30 | |
Matthew Garrett | 9dead5b | 2012-07-26 18:00:00 -0400 | [diff] [blame] | 31 | $(obj)/eboot.o: KBUILD_CFLAGS += -fshort-wchar -mno-red-zone |
Matthew Garrett | 9dead5b | 2012-07-26 18:00:00 -0400 | [diff] [blame] | 32 | |
Matt Fleming | 291f363 | 2011-12-12 21:27:52 +0000 | [diff] [blame] | 33 | ifeq ($(CONFIG_EFI_STUB), y) |
| 34 | VMLINUX_OBJS += $(obj)/eboot.o $(obj)/efi_stub_$(BITS).o |
| 35 | endif |
| 36 | |
| 37 | $(obj)/vmlinux: $(VMLINUX_OBJS) FORCE |
Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 38 | $(call if_changed,ld) |
| 39 | @: |
| 40 | |
Ian Campbell | 099e137 | 2008-02-13 20:54:58 +0000 | [diff] [blame] | 41 | OBJCOPYFLAGS_vmlinux.bin := -R .comment -S |
Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 42 | $(obj)/vmlinux.bin: vmlinux FORCE |
| 43 | $(call if_changed,objcopy) |
| 44 | |
Jan Beulich | 9187082 | 2013-04-03 15:47:33 +0100 | [diff] [blame^] | 45 | targets += $(patsubst $(obj)/%,%,$(VMLINUX_OBJS)) vmlinux.bin.all vmlinux.relocs |
Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 46 | |
H. Peter Anvin | 6520fe5 | 2012-05-08 21:22:24 +0300 | [diff] [blame] | 47 | CMD_RELOCS = arch/x86/tools/relocs |
Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 48 | quiet_cmd_relocs = RELOCS $@ |
H. Peter Anvin | 6520fe5 | 2012-05-08 21:22:24 +0300 | [diff] [blame] | 49 | cmd_relocs = $(CMD_RELOCS) $< > $@;$(CMD_RELOCS) --abs-relocs $< |
| 50 | $(obj)/vmlinux.relocs: vmlinux FORCE |
Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 51 | $(call if_changed,relocs) |
| 52 | |
| 53 | vmlinux.bin.all-y := $(obj)/vmlinux.bin |
H. Peter Anvin | 5f11e02 | 2009-05-05 22:53:11 -0700 | [diff] [blame] | 54 | vmlinux.bin.all-$(CONFIG_X86_NEED_RELOCS) += $(obj)/vmlinux.relocs |
Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 55 | |
H. Peter Anvin | 5f11e02 | 2009-05-05 22:53:11 -0700 | [diff] [blame] | 56 | $(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE |
Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 57 | $(call if_changed,gzip) |
H. Peter Anvin | 5f11e02 | 2009-05-05 22:53:11 -0700 | [diff] [blame] | 58 | $(obj)/vmlinux.bin.bz2: $(vmlinux.bin.all-y) FORCE |
Alain Knaff | ae03c49 | 2009-01-04 22:46:17 +0100 | [diff] [blame] | 59 | $(call if_changed,bzip2) |
H. Peter Anvin | 5f11e02 | 2009-05-05 22:53:11 -0700 | [diff] [blame] | 60 | $(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y) FORCE |
Alain Knaff | ae03c49 | 2009-01-04 22:46:17 +0100 | [diff] [blame] | 61 | $(call if_changed,lzma) |
Lasse Collin | 3031480 | 2011-01-12 17:01:24 -0800 | [diff] [blame] | 62 | $(obj)/vmlinux.bin.xz: $(vmlinux.bin.all-y) FORCE |
| 63 | $(call if_changed,xzkern) |
Albin Tonnerre | 1351099 | 2010-01-08 14:42:45 -0800 | [diff] [blame] | 64 | $(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y) FORCE |
| 65 | $(call if_changed,lzo) |
Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 66 | |
H. Peter Anvin | 283ab1c | 2009-05-08 15:32:47 -0700 | [diff] [blame] | 67 | suffix-$(CONFIG_KERNEL_GZIP) := gz |
| 68 | suffix-$(CONFIG_KERNEL_BZIP2) := bz2 |
| 69 | suffix-$(CONFIG_KERNEL_LZMA) := lzma |
Lasse Collin | 3031480 | 2011-01-12 17:01:24 -0800 | [diff] [blame] | 70 | suffix-$(CONFIG_KERNEL_XZ) := xz |
Albin Tonnerre | 1351099 | 2010-01-08 14:42:45 -0800 | [diff] [blame] | 71 | suffix-$(CONFIG_KERNEL_LZO) := lzo |
Alain Knaff | ae03c49 | 2009-01-04 22:46:17 +0100 | [diff] [blame] | 72 | |
H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 73 | quiet_cmd_mkpiggy = MKPIGGY $@ |
| 74 | cmd_mkpiggy = $(obj)/mkpiggy $< > $@ || ( rm -f $@ ; false ) |
| 75 | |
| 76 | targets += piggy.S |
| 77 | $(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE |
| 78 | $(call if_changed,mkpiggy) |