1#
2# linux/arch/arm/boot/compressed/Makefile
3#
4# create a compressed vmlinuz image from the original vmlinux
5#
6
7HEAD	= head.o
8OBJS	= misc.o
9FONTC	= drivers/video/console/font_acorn_8x8.c
10
11FONT = $(addprefix ../../../../drivers/video/console/, font_acorn_8x8.o)
12
13#
14# Architecture dependencies
15#
16ifeq ($(CONFIG_ARCH_ACORN),y)
17OBJS		+= ll_char_wr.o $(FONT)
18endif
19
20ifeq ($(CONFIG_ARCH_SHARK),y)
21OBJS		+= head-shark.o ofw-shark.o
22endif
23
24ifeq ($(CONFIG_ARCH_L7200),y)
25OBJS		+= head-l7200.o
26endif
27
28ifeq ($(CONFIG_ARCH_CLPS7500),y)
29HEAD		= head-clps7500.o
30endif
31
32ifeq ($(CONFIG_ARCH_P720T),y)
33# Borrow this code from SA1100
34OBJS		+= head-sa1100.o
35endif
36
37ifeq ($(CONFIG_ARCH_SA1100),y)
38OBJS		+= head-sa1100.o
39endif
40
41ifeq ($(CONFIG_CPU_XSCALE),y)
42OBJS		+= head-xscale.o
43endif
44
45ifeq ($(CONFIG_PXA_SHARPSL),y)
46OBJS		+= head-sharpsl.o
47endif
48
49ifeq ($(CONFIG_ARCH_AT91RM9200),y)
50OBJS		+= head-at91rm9200.o
51endif
52
53ifeq ($(CONFIG_CPU_BIG_ENDIAN),y)
54ifeq ($(CONFIG_CPU_CP15),y)
55OBJS		+= big-endian.o
56else
57# The endian should be set by h/w design.
58endif
59endif
60
61#
62# We now have a PIC decompressor implementation.  Decompressors running
63# from RAM should not define ZTEXTADDR.  Decompressors running directly
64# from ROM or Flash must define ZTEXTADDR (preferably via the config)
65ifeq ($(CONFIG_ZBOOT_ROM),y)
66ZTEXTADDR	:= $(CONFIG_ZBOOT_ROM_TEXT)
67ZBSSADDR	:= $(CONFIG_ZBOOT_ROM_BSS)
68else
69ZTEXTADDR	:= 0
70ZBSSADDR	:= ALIGN(4)
71endif
72
73SEDFLAGS	= s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/
74
75targets       := vmlinux vmlinux.lds piggy.gz piggy.o $(FONT) \
76		 head.o misc.o $(OBJS)
77EXTRA_CFLAGS  := -fpic
78EXTRA_AFLAGS  :=
79
80# Supply ZRELADDR, INITRD_PHYS and PARAMS_PHYS to the decompressor via
81# linker symbols.  We only define initrd_phys and params_phys if the
82# machine class defined the corresponding makefile variable.
83LDFLAGS_vmlinux := --defsym zreladdr=$(ZRELADDR)
84ifneq ($(INITRD_PHYS),)
85LDFLAGS_vmlinux += --defsym initrd_phys=$(INITRD_PHYS)
86endif
87ifneq ($(PARAMS_PHYS),)
88LDFLAGS_vmlinux += --defsym params_phys=$(PARAMS_PHYS)
89endif
90LDFLAGS_vmlinux += -p --no-undefined -X \
91	$(shell $(CC) $(CFLAGS) --print-libgcc-file-name) -T
92
93# Don't allow any static data in misc.o, which
94# would otherwise mess up our GOT table
95CFLAGS_misc.o := -Dstatic=
96
97$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.o \
98	 	$(addprefix $(obj)/, $(OBJS)) FORCE
99	$(call if_changed,ld)
100	@:
101
102$(obj)/piggy.gz: $(obj)/../Image FORCE
103	$(call if_changed,gzip)
104
105$(obj)/piggy.o:  $(obj)/piggy.gz FORCE
106
107CFLAGS_font_acorn_8x8.o := -Dstatic=
108
109$(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/arm/boot/Makefile .config
110	@sed "$(SEDFLAGS)" < $< > $@
111
112$(obj)/misc.o: $(obj)/misc.c include/asm/arch/uncompress.h lib/inflate.c
113