Merge git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable
[pandora-kernel.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.xz vmlinux.bin.lzo head_$(BITS).o misc.o string.o cmdline.o early_serial_console.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)/string.o $(obj)/cmdline.o $(obj)/early_serial_console.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.xz: $(vmlinux.bin.all-y) FORCE
53         $(call if_changed,xzkern)
54 $(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y) FORCE
55         $(call if_changed,lzo)
56
57 suffix-$(CONFIG_KERNEL_GZIP)    := gz
58 suffix-$(CONFIG_KERNEL_BZIP2)   := bz2
59 suffix-$(CONFIG_KERNEL_LZMA)    := lzma
60 suffix-$(CONFIG_KERNEL_XZ)      := xz
61 suffix-$(CONFIG_KERNEL_LZO)     := lzo
62
63 quiet_cmd_mkpiggy = MKPIGGY $@
64       cmd_mkpiggy = $(obj)/mkpiggy $< > $@ || ( rm -f $@ ; false )
65
66 targets += piggy.S
67 $(obj)/piggy.S: $(obj)/vmlinux.bin.$(suffix-y) $(obj)/mkpiggy FORCE
68         $(call if_changed,mkpiggy)