MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / arch / arm / boot / compressed / Makefile
blob3288a0266e55436789dd5a44f310c615bdcb7e52
2 # linux/arch/arm/boot/compressed/Makefile
4 # create a compressed vmlinuz image from the original vmlinux
7 HEAD = head.o
8 OBJS = misc.o
9 FONTC = drivers/video/console/font_acorn_8x8.c
11 FONT = $(addprefix ../../../../drivers/video/console/, font_acorn_8x8.o)
14 # Architecture dependencies
16 ifeq ($(CONFIG_ARCH_ACORN),y)
17 OBJS += ll_char_wr.o $(FONT)
18 endif
20 ifeq ($(CONFIG_ARCH_SHARK),y)
21 OBJS += head-shark.o ofw-shark.o
22 endif
24 ifeq ($(CONFIG_ARCH_L7200),y)
25 OBJS += head-l7200.o
26 endif
28 ifeq ($(CONFIG_ARCH_CLPS7500),y)
29 HEAD = head-clps7500.o
30 endif
32 ifeq ($(CONFIG_ARCH_P720T),y)
33 # Borrow this code from SA1100
34 OBJS += head-sa1100.o
35 endif
37 ifeq ($(CONFIG_ARCH_SA1100),y)
38 OBJS += head-sa1100.o
39 endif
41 ifeq ($(CONFIG_ARCH_S3C44B0),y)
42 HEAD = head-s3c44b0.o
43 endif
45 ifeq ($(CONFIG_ARCH_P2001),y)
46 HEAD = head-p2001.o
47 endif
49 ifeq ($(CONFIG_ARCH_ESPD_4510B),y)
50 HEAD = head-espd_4510b.o
51 endif
52 ifeq ($(CONFIG_CPU_XSCALE),y)
53 OBJS += head-xscale.o
54 endif
56 ifeq ($(CONFIG_PXA_SHARPSL),y)
57 OBJS += head-sharpsl.o
58 endif
60 ifeq ($(CONFIG_ARCH_KS8695),y)
61 OBJS += head-ks8695.o
62 endif
64 ifeq ($(CONFIG_ARCH_AT91RM9200),y)
65 OBJS += head-at91rm9200.o
66 endif
68 ifeq ($(CONFIG_CPU_BIG_ENDIAN),y)
69 ifeq ($(CONFIG_CPU_CP15),y)
70 OBJS += big-endian.o
71 else
72 # The endian should be set by h/w design.
73 endif
74 endif
77 # We now have a PIC decompressor implementation. Decompressors running
78 # from RAM should not define ZTEXTADDR. Decompressors running directly
79 # from ROM or Flash must define ZTEXTADDR (preferably via the config)
80 # FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK
81 ifeq ($(CONFIG_ZBOOT_ROM),y)
82 ZTEXTADDR := $(CONFIG_ZBOOT_ROM_TEXT)
83 ZBSSADDR := $(CONFIG_ZBOOT_ROM_BSS)
84 else
85 ZTEXTADDR := 0
86 ZBSSADDR := ALIGN(4)
87 endif
89 SEDFLAGS = s/TEXT_START/$(ZTEXTADDR)/;s/LOAD_ADDR/$(ZRELADDR)/;s/BSS_START/$(ZBSSADDR)/
91 targets := vmlinux vmlinux.lds piggy.gz piggy.o $(FONT) \
92 head.o misc.o $(OBJS)
93 EXTRA_CFLAGS := -fpic
94 EXTRA_AFLAGS :=
96 # Supply ZRELADDR, INITRD_PHYS and PARAMS_PHYS to the decompressor via
97 # linker symbols. We only define initrd_phys and params_phys if the
98 # machine class defined the corresponding makefile variable.
99 LDFLAGS_vmlinux := --defsym zreladdr=$(ZRELADDR)
100 ifneq ($(INITRD_PHYS),)
101 LDFLAGS_vmlinux += --defsym initrd_phys=$(INITRD_PHYS)
102 endif
103 ifneq ($(PARAMS_PHYS),)
104 LDFLAGS_vmlinux += --defsym params_phys=$(PARAMS_PHYS)
105 endif
106 LDFLAGS_vmlinux += -p --no-undefined -X \
107 $(shell $(CC) $(CFLAGS) --print-libgcc-file-name) -T
109 # Don't allow any static data in misc.o, which
110 # would otherwise mess up our GOT table
111 CFLAGS_misc.o := -Dstatic=
113 $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.o \
114 $(addprefix $(obj)/, $(OBJS)) FORCE
115 $(call if_changed,ld)
118 $(obj)/piggy.gz: $(obj)/../Image FORCE
119 $(call if_changed,gzip)
121 $(obj)/piggy.o: $(obj)/piggy.gz FORCE
123 CFLAGS_font_acorn_8x8.o := -Dstatic=
125 $(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/arm/boot/Makefile .config
126 @sed "$(SEDFLAGS)" < $< > $@
128 $(obj)/misc.o: $(obj)/misc.c include/asm/arch/uncompress.h lib/inflate.c