fbb47daf2459d4aed21a1ef1d106965199a98436
[deliverable/linux.git] / arch / x86 / boot / compressed / Makefile
1 #
2 # linux/arch/x86/boot/compressed/Makefile
3 #
4 # create a compressed vmlinux image from the original vmlinux
5 #
6
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
8
9 KBUILD_CFLAGS := -m$(BITS) -D__KERNEL__ $(LINUX_INCLUDE) -O2
10 KBUILD_CFLAGS += -fno-strict-aliasing -fPIC
11 KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING
12 cflags-$(CONFIG_X86_32) := -march=i386
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__
19 GCOV_PROFILE := n
20
21 LDFLAGS := -m elf_$(UTS_MACHINE)
22 LDFLAGS_vmlinux := -T
23
24 hostprogs-y := mkpiggy
25
26 $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/head_$(BITS).o $(obj)/misc.o $(obj)/piggy.o FORCE
27 $(call if_changed,ld)
28 @:
29
30 OBJCOPYFLAGS_vmlinux.bin := -R .comment -S
31 $(obj)/vmlinux.bin: vmlinux FORCE
32 $(call if_changed,objcopy)
33
34
35 targets += vmlinux.bin.all vmlinux.relocs relocs
36 hostprogs-$(CONFIG_X86_NEED_RELOCS) += relocs
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
44 vmlinux.bin.all-$(CONFIG_X86_NEED_RELOCS) += $(obj)/vmlinux.relocs
45
46 $(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE
47 $(call if_changed,gzip)
48 $(obj)/vmlinux.bin.bz2: $(vmlinux.bin.all-y) FORCE
49 $(call if_changed,bzip2)
50 $(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y) FORCE
51 $(call if_changed,lzma)
52 $(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y) FORCE
53 $(call if_changed,lzo)
54
55 suffix-$(CONFIG_KERNEL_GZIP) := gz
56 suffix-$(CONFIG_KERNEL_BZIP2) := bz2
57 suffix-$(CONFIG_KERNEL_LZMA) := lzma
58 suffix-$(CONFIG_KERNEL_LZO) := lzo
59
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)
This page took 0.079075 seconds and 4 git commands to generate.