ARM: 6026/1: ARM: Add support for LZMA-compressed kernel images
[linux-2.6-block.git] / arch / arm / boot / compressed / Makefile
CommitLineData
1da177e4
LT
1#
2# linux/arch/arm/boot/compressed/Makefile
3#
4# create a compressed vmlinuz image from the original vmlinux
5#
6
7HEAD = head.o
5de813b6 8OBJS = misc.o decompress.o
4486b863 9FONTC = $(srctree)/drivers/video/console/font_acorn_8x8.c
1da177e4
LT
10
11#
12# Architecture dependencies
13#
14ifeq ($(CONFIG_ARCH_ACORN),y)
4486b863 15OBJS += ll_char_wr.o font.o
1da177e4
LT
16endif
17
18ifeq ($(CONFIG_ARCH_SHARK),y)
19OBJS += head-shark.o ofw-shark.o
20endif
21
1da177e4
LT
22ifeq ($(CONFIG_ARCH_L7200),y)
23OBJS += head-l7200.o
24endif
25
1da177e4
LT
26ifeq ($(CONFIG_ARCH_P720T),y)
27# Borrow this code from SA1100
28OBJS += head-sa1100.o
29endif
30
31ifeq ($(CONFIG_ARCH_SA1100),y)
32OBJS += head-sa1100.o
33endif
34
35ifeq ($(CONFIG_CPU_XSCALE),y)
36OBJS += head-xscale.o
37endif
38
39ifeq ($(CONFIG_PXA_SHARPSL),y)
40OBJS += head-sharpsl.o
41endif
42
26584853 43ifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
f12d0d7c 44ifeq ($(CONFIG_CPU_CP15),y)
1da177e4 45OBJS += big-endian.o
f12d0d7c
HC
46else
47# The endian should be set by h/w design.
48endif
1da177e4
LT
49endif
50
51#
52# We now have a PIC decompressor implementation. Decompressors running
53# from RAM should not define ZTEXTADDR. Decompressors running directly
54# from ROM or Flash must define ZTEXTADDR (preferably via the config)
55# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK
56ifeq ($(CONFIG_ZBOOT_ROM),y)
57ZTEXTADDR := $(CONFIG_ZBOOT_ROM_TEXT)
58ZBSSADDR := $(CONFIG_ZBOOT_ROM_BSS)
59else
60ZTEXTADDR := 0
61ZBSSADDR := ALIGN(4)
62endif
63
64SEDFLAGS = s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/
65
e7db7b42
AT
66suffix_$(CONFIG_KERNEL_GZIP) = gzip
67suffix_$(CONFIG_KERNEL_LZO) = lzo
6e8699f7 68suffix_$(CONFIG_KERNEL_LZMA) = lzma
e7db7b42
AT
69
70targets := vmlinux vmlinux.lds \
71 piggy.$(suffix_y) piggy.$(suffix_y).o \
72 font.o font.c head.o misc.o $(OBJS)
014c257c 73
606576ce 74ifeq ($(CONFIG_FUNCTION_TRACER),y)
014c257c
AS
75ORIG_CFLAGS := $(KBUILD_CFLAGS)
76KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
77endif
78
48da78bc 79EXTRA_CFLAGS := -fpic -fno-builtin
80cec14a 80EXTRA_AFLAGS := -Wa,-march=all
1da177e4
LT
81
82# Supply ZRELADDR, INITRD_PHYS and PARAMS_PHYS to the decompressor via
83# linker symbols. We only define initrd_phys and params_phys if the
84# machine class defined the corresponding makefile variable.
85LDFLAGS_vmlinux := --defsym zreladdr=$(ZRELADDR)
26584853
CM
86ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
87LDFLAGS_vmlinux += --be8
88endif
1da177e4
LT
89ifneq ($(INITRD_PHYS),)
90LDFLAGS_vmlinux += --defsym initrd_phys=$(INITRD_PHYS)
91endif
92ifneq ($(PARAMS_PHYS),)
93LDFLAGS_vmlinux += --defsym params_phys=$(PARAMS_PHYS)
94endif
e7db7b42
AT
95# ?
96LDFLAGS_vmlinux += -p
97# Report unresolved symbol references
98LDFLAGS_vmlinux += --no-undefined
99# Delete all temporary local symbols
100LDFLAGS_vmlinux += -X
101# Next argument is a linker script
102LDFLAGS_vmlinux += -T
103
104# For __aeabi_uidivmod
105lib1funcs = $(obj)/lib1funcs.o
106
107$(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S FORCE
108 $(call cmd,shipped)
1da177e4 109
e7db7b42
AT
110$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
111 $(addprefix $(obj)/, $(OBJS)) $(lib1funcs) FORCE
1da177e4
LT
112 $(call if_changed,ld)
113 @:
114
e7db7b42
AT
115$(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE
116 $(call if_changed,$(suffix_y))
1da177e4 117
e7db7b42 118$(obj)/piggy.$(suffix_y).o: $(obj)/piggy.$(suffix_y) FORCE
1da177e4 119
4486b863
RK
120CFLAGS_font.o := -Dstatic=
121
122$(obj)/font.c: $(FONTC)
123 $(call cmd,shipped)
1da177e4
LT
124
125$(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/arm/boot/Makefile .config
126 @sed "$(SEDFLAGS)" < $< > $@