Makefile (a1926d1745114789687ac029ae8c58944b7d2256) Makefile (f45b1149911cc4c3ab50e56c8844ad4ec04a4575)
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
7AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
8HEAD = head.o
18AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
19HEAD = head.o
9OBJS = misc.o decompress.o
20OBJS += misc.o decompress.o
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

--- 107 unchanged lines hidden ---
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

--- 107 unchanged lines hidden ---