Makefile (f45b1149911cc4c3ab50e56c8844ad4ec04a4575) Makefile (21f47fbc5b18da4a3db680959aee887612ec9a72)
1#
2# linux/arch/arm/boot/compressed/Makefile
3#
4# create a compressed vmlinuz image from the original vmlinux
5#
6
1#
2# linux/arch/arm/boot/compressed/Makefile
3#
4# create a compressed vmlinuz image from the original vmlinux
5#
6
7OBJS =
8
9# Ensure that mmcif loader code appears early in the image
10# to minimise that number of bocks that have to be read in
11# order to load it.
12ifeq ($(CONFIG_ZBOOT_ROM_MMCIF),y)
13ifeq ($(CONFIG_ARCH_SH7372),y)
14OBJS += mmcif-sh7372.o
15endif
16endif
17
18AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
19HEAD = head.o
7AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
8HEAD = head.o
20OBJS += misc.o decompress.o
9OBJS = misc.o decompress.o
21FONTC = $(srctree)/drivers/video/console/font_acorn_8x8.c
22
23#
24# Architecture dependencies
25#
26ifeq ($(CONFIG_ARCH_ACORN),y)
27OBJS += ll_char_wr.o font.o
28endif

--- 6 unchanged lines hidden (view full) ---

35# Borrow this code from SA1100
36OBJS += head-sa1100.o
37endif
38
39ifeq ($(CONFIG_ARCH_SA1100),y)
40OBJS += head-sa1100.o
41endif
42
10FONTC = $(srctree)/drivers/video/console/font_acorn_8x8.c
11
12#
13# Architecture dependencies
14#
15ifeq ($(CONFIG_ARCH_ACORN),y)
16OBJS += ll_char_wr.o font.o
17endif

--- 6 unchanged lines hidden (view full) ---

24# Borrow this code from SA1100
25OBJS += head-sa1100.o
26endif
27
28ifeq ($(CONFIG_ARCH_SA1100),y)
29OBJS += head-sa1100.o
30endif
31
32ifeq ($(CONFIG_ARCH_VT8500),y)
33OBJS += head-vt8500.o
34endif
35
43ifeq ($(CONFIG_CPU_XSCALE),y)
44OBJS += head-xscale.o
45endif
46
47ifeq ($(CONFIG_PXA_SHARPSL_DETECT_MACH_ID),y)
48OBJS += head-sharpsl.o
49endif
50

--- 85 unchanged lines hidden ---
36ifeq ($(CONFIG_CPU_XSCALE),y)
37OBJS += head-xscale.o
38endif
39
40ifeq ($(CONFIG_PXA_SHARPSL_DETECT_MACH_ID),y)
41OBJS += head-sharpsl.o
42endif
43

--- 85 unchanged lines hidden ---