blob: 864a002137fed0bbc42efe7b4f2dc787a06ba48a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# linux/arch/arm/boot/compressed/Makefile
3#
4# create a compressed vmlinuz image from the original vmlinux
5#
6
7HEAD = head.o
Russell King5de813b2010-02-25 12:14:40 +00008OBJS = misc.o decompress.o
Russell King4486b862007-06-03 18:54:42 +01009FONTC = $(srctree)/drivers/video/console/font_acorn_8x8.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#
12# Architecture dependencies
13#
14ifeq ($(CONFIG_ARCH_ACORN),y)
Russell King4486b862007-06-03 18:54:42 +010015OBJS += ll_char_wr.o font.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070016endif
17
18ifeq ($(CONFIG_ARCH_SHARK),y)
19OBJS += head-shark.o ofw-shark.o
20endif
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022ifeq ($(CONFIG_ARCH_L7200),y)
23OBJS += head-l7200.o
24endif
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026ifeq ($(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
Catalin Marinas26584852009-05-30 14:00:18 +010043ifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
Hyok S. Choif12d0d72006-09-26 17:36:37 +090044ifeq ($(CONFIG_CPU_CP15),y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045OBJS += big-endian.o
Hyok S. Choif12d0d72006-09-26 17:36:37 +090046else
47# The endian should be set by h/w design.
48endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070049endif
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
Albin Tonnerree7db7b42010-01-08 14:42:43 -080066suffix_$(CONFIG_KERNEL_GZIP) = gzip
67suffix_$(CONFIG_KERNEL_LZO) = lzo
Albin Tonnerre6e8699f2010-04-03 11:40:28 +010068suffix_$(CONFIG_KERNEL_LZMA) = lzma
Albin Tonnerree7db7b42010-01-08 14:42:43 -080069
70targets := vmlinux vmlinux.lds \
71 piggy.$(suffix_y) piggy.$(suffix_y).o \
72 font.o font.c head.o misc.o $(OBJS)
Abhishek Sagar014c2572008-05-31 14:23:50 +053073
Magnus Dammf1b957d2010-07-28 05:46:21 +010074# Make sure files are removed during clean
75extra-y += piggy.gzip piggy.lzo piggy.lzma lib1funcs.S
76
Steven Rostedt606576c2008-10-06 19:06:12 -040077ifeq ($(CONFIG_FUNCTION_TRACER),y)
Abhishek Sagar014c2572008-05-31 14:23:50 +053078ORIG_CFLAGS := $(KBUILD_CFLAGS)
79KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
80endif
81
Catalin Marinas48da78b2007-07-11 11:29:28 +010082EXTRA_CFLAGS := -fpic -fno-builtin
Russell King80cec142008-09-09 13:56:45 +010083EXTRA_AFLAGS := -Wa,-march=all
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85# Supply ZRELADDR, INITRD_PHYS and PARAMS_PHYS to the decompressor via
86# linker symbols. We only define initrd_phys and params_phys if the
87# machine class defined the corresponding makefile variable.
88LDFLAGS_vmlinux := --defsym zreladdr=$(ZRELADDR)
Catalin Marinas26584852009-05-30 14:00:18 +010089ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
90LDFLAGS_vmlinux += --be8
91endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070092ifneq ($(INITRD_PHYS),)
93LDFLAGS_vmlinux += --defsym initrd_phys=$(INITRD_PHYS)
94endif
95ifneq ($(PARAMS_PHYS),)
96LDFLAGS_vmlinux += --defsym params_phys=$(PARAMS_PHYS)
97endif
Albin Tonnerree7db7b42010-01-08 14:42:43 -080098# ?
99LDFLAGS_vmlinux += -p
100# Report unresolved symbol references
101LDFLAGS_vmlinux += --no-undefined
102# Delete all temporary local symbols
103LDFLAGS_vmlinux += -X
104# Next argument is a linker script
105LDFLAGS_vmlinux += -T
106
107# For __aeabi_uidivmod
108lib1funcs = $(obj)/lib1funcs.o
109
110$(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S FORCE
111 $(call cmd,shipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800113$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
114 $(addprefix $(obj)/, $(OBJS)) $(lib1funcs) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 $(call if_changed,ld)
116 @:
117
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800118$(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE
119 $(call if_changed,$(suffix_y))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800121$(obj)/piggy.$(suffix_y).o: $(obj)/piggy.$(suffix_y) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Russell King4486b862007-06-03 18:54:42 +0100123CFLAGS_font.o := -Dstatic=
124
125$(obj)/font.c: $(FONTC)
126 $(call cmd,shipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128$(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/arm/boot/Makefile .config
129 @sed "$(SEDFLAGS)" < $< > $@