blob: cc8380b879fefca2c4c6a35b900867fc7256c030 [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
Eric Miaoe69edc792010-07-05 15:56:50 +02007AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008HEAD = head.o
Russell King5de813b2010-02-25 12:14:40 +00009OBJS = misc.o decompress.o
Russell King4486b862007-06-03 18:54:42 +010010FONTC = $(srctree)/drivers/video/console/font_acorn_8x8.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#
13# Architecture dependencies
14#
15ifeq ($(CONFIG_ARCH_ACORN),y)
Russell King4486b862007-06-03 18:54:42 +010016OBJS += ll_char_wr.o font.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070017endif
18
19ifeq ($(CONFIG_ARCH_SHARK),y)
20OBJS += head-shark.o ofw-shark.o
21endif
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023ifeq ($(CONFIG_ARCH_L7200),y)
24OBJS += head-l7200.o
25endif
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027ifeq ($(CONFIG_ARCH_P720T),y)
28# Borrow this code from SA1100
29OBJS += head-sa1100.o
30endif
31
32ifeq ($(CONFIG_ARCH_SA1100),y)
33OBJS += head-sa1100.o
34endif
35
36ifeq ($(CONFIG_CPU_XSCALE),y)
37OBJS += head-xscale.o
38endif
39
40ifeq ($(CONFIG_PXA_SHARPSL),y)
41OBJS += head-sharpsl.o
42endif
43
Catalin Marinas26584852009-05-30 14:00:18 +010044ifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
Hyok S. Choif12d0d72006-09-26 17:36:37 +090045ifeq ($(CONFIG_CPU_CP15),y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046OBJS += big-endian.o
Hyok S. Choif12d0d72006-09-26 17:36:37 +090047else
48# The endian should be set by h/w design.
49endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070050endif
51
52#
53# We now have a PIC decompressor implementation. Decompressors running
54# from RAM should not define ZTEXTADDR. Decompressors running directly
55# from ROM or Flash must define ZTEXTADDR (preferably via the config)
56# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK
57ifeq ($(CONFIG_ZBOOT_ROM),y)
58ZTEXTADDR := $(CONFIG_ZBOOT_ROM_TEXT)
59ZBSSADDR := $(CONFIG_ZBOOT_ROM_BSS)
60else
61ZTEXTADDR := 0
62ZBSSADDR := ALIGN(4)
63endif
64
65SEDFLAGS = s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/
66
Albin Tonnerree7db7b42010-01-08 14:42:43 -080067suffix_$(CONFIG_KERNEL_GZIP) = gzip
68suffix_$(CONFIG_KERNEL_LZO) = lzo
Albin Tonnerre6e8699f2010-04-03 11:40:28 +010069suffix_$(CONFIG_KERNEL_LZMA) = lzma
Albin Tonnerree7db7b42010-01-08 14:42:43 -080070
71targets := vmlinux vmlinux.lds \
72 piggy.$(suffix_y) piggy.$(suffix_y).o \
73 font.o font.c head.o misc.o $(OBJS)
Abhishek Sagar014c2572008-05-31 14:23:50 +053074
Steven Rostedt606576c2008-10-06 19:06:12 -040075ifeq ($(CONFIG_FUNCTION_TRACER),y)
Abhishek Sagar014c2572008-05-31 14:23:50 +053076ORIG_CFLAGS := $(KBUILD_CFLAGS)
77KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
78endif
79
Catalin Marinas48da78b2007-07-11 11:29:28 +010080EXTRA_CFLAGS := -fpic -fno-builtin
Russell King80cec142008-09-09 13:56:45 +010081EXTRA_AFLAGS := -Wa,-march=all
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Catalin Marinas26584852009-05-30 14:00:18 +010083ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
84LDFLAGS_vmlinux += --be8
85endif
Albin Tonnerree7db7b42010-01-08 14:42:43 -080086# ?
87LDFLAGS_vmlinux += -p
88# Report unresolved symbol references
89LDFLAGS_vmlinux += --no-undefined
90# Delete all temporary local symbols
91LDFLAGS_vmlinux += -X
92# Next argument is a linker script
93LDFLAGS_vmlinux += -T
94
95# For __aeabi_uidivmod
96lib1funcs = $(obj)/lib1funcs.o
97
98$(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S FORCE
99 $(call cmd,shipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800101$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
102 $(addprefix $(obj)/, $(OBJS)) $(lib1funcs) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 $(call if_changed,ld)
104 @:
105
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800106$(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE
107 $(call if_changed,$(suffix_y))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800109$(obj)/piggy.$(suffix_y).o: $(obj)/piggy.$(suffix_y) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Russell King4486b862007-06-03 18:54:42 +0100111CFLAGS_font.o := -Dstatic=
112
113$(obj)/font.c: $(FONTC)
114 $(call cmd,shipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116$(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/arm/boot/Makefile .config
117 @sed "$(SEDFLAGS)" < $< > $@