| 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 |  | 
| Albin Tonnerre | 1351099 | 2010-01-08 14:42:45 -0800 | [diff] [blame] | 7 | targets := vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma vmlinux.bin.lzo head_$(BITS).o misc.o piggy.o | 
| 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 | 
 | 25 |  | 
| Linus Torvalds | 51b26ad | 2009-04-26 10:12:47 -0700 | [diff] [blame] | 26 | $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/head_$(BITS).o $(obj)/misc.o $(obj)/piggy.o FORCE | 
| Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 27 | 	$(call if_changed,ld) | 
 | 28 | 	@: | 
 | 29 |  | 
| Ian Campbell | 099e137 | 2008-02-13 20:54:58 +0000 | [diff] [blame] | 30 | OBJCOPYFLAGS_vmlinux.bin :=  -R .comment -S | 
| Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 31 | $(obj)/vmlinux.bin: vmlinux FORCE | 
 | 32 | 	$(call if_changed,objcopy) | 
 | 33 |  | 
 | 34 |  | 
| H. Peter Anvin | 7f16a33 | 2008-09-04 06:19:45 -0700 | [diff] [blame] | 35 | targets += vmlinux.bin.all vmlinux.relocs relocs | 
| H. Peter Anvin | 5f11e02 | 2009-05-05 22:53:11 -0700 | [diff] [blame] | 36 | hostprogs-$(CONFIG_X86_NEED_RELOCS) += relocs | 
| Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 37 |  | 
 | 38 | quiet_cmd_relocs = RELOCS  $@ | 
 | 39 |       cmd_relocs = $(obj)/relocs $< > $@;$(obj)/relocs --abs-relocs $< | 
 | 40 | $(obj)/vmlinux.relocs: vmlinux $(obj)/relocs FORCE | 
 | 41 | 	$(call if_changed,relocs) | 
 | 42 |  | 
 | 43 | vmlinux.bin.all-y := $(obj)/vmlinux.bin | 
| H. Peter Anvin | 5f11e02 | 2009-05-05 22:53:11 -0700 | [diff] [blame] | 44 | vmlinux.bin.all-$(CONFIG_X86_NEED_RELOCS) += $(obj)/vmlinux.relocs | 
| Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 45 |  | 
| H. Peter Anvin | 5f11e02 | 2009-05-05 22:53:11 -0700 | [diff] [blame] | 46 | $(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE | 
| Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 47 | 	$(call if_changed,gzip) | 
| H. Peter Anvin | 5f11e02 | 2009-05-05 22:53:11 -0700 | [diff] [blame] | 48 | $(obj)/vmlinux.bin.bz2: $(vmlinux.bin.all-y) FORCE | 
| Alain Knaff | ae03c49 | 2009-01-04 22:46:17 +0100 | [diff] [blame] | 49 | 	$(call if_changed,bzip2) | 
| H. Peter Anvin | 5f11e02 | 2009-05-05 22:53:11 -0700 | [diff] [blame] | 50 | $(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y) FORCE | 
| Alain Knaff | ae03c49 | 2009-01-04 22:46:17 +0100 | [diff] [blame] | 51 | 	$(call if_changed,lzma) | 
| Albin Tonnerre | 1351099 | 2010-01-08 14:42:45 -0800 | [diff] [blame] | 52 | $(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y) FORCE | 
 | 53 | 	$(call if_changed,lzo) | 
| Sam Ravnborg | db569af | 2008-01-30 13:32:30 +0100 | [diff] [blame] | 54 |  | 
| H. Peter Anvin | 283ab1c | 2009-05-08 15:32:47 -0700 | [diff] [blame] | 55 | suffix-$(CONFIG_KERNEL_GZIP)	:= gz | 
 | 56 | suffix-$(CONFIG_KERNEL_BZIP2)	:= bz2 | 
 | 57 | suffix-$(CONFIG_KERNEL_LZMA)	:= lzma | 
| Albin Tonnerre | 1351099 | 2010-01-08 14:42:45 -0800 | [diff] [blame] | 58 | suffix-$(CONFIG_KERNEL_LZO) 	:= lzo | 
| Alain Knaff | ae03c49 | 2009-01-04 22:46:17 +0100 | [diff] [blame] | 59 |  | 
| H. Peter Anvin | 02a884c | 2009-05-08 17:42:16 -0700 | [diff] [blame] | 60 | quiet_cmd_mkpiggy = MKPIGGY $@ | 
 | 61 |       cmd_mkpiggy = $(obj)/mkpiggy $< > $@ || ( rm -f $@ ; false ) | 
 | 62 |  | 
 | 63 | targets += piggy.S | 
 | 64 | $(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE | 
 | 65 | 	$(call if_changed,mkpiggy) |