Makefile (8f987768eb99631374f4ab0bb19cd062baf1397d) Makefile (9a4af112bd252be801a433fc3bef793b7b487c3c)
1#
2# linux/arch/arm/boot/compressed/Makefile
3#
4# create a compressed vmlinuz image from the original vmlinux
5#
6
7AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
8HEAD = head.o

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

40ifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
41ifeq ($(CONFIG_CPU_CP15),y)
42OBJS += big-endian.o
43else
44# The endian should be set by h/w design.
45endif
46endif
47
1#
2# linux/arch/arm/boot/compressed/Makefile
3#
4# create a compressed vmlinuz image from the original vmlinux
5#
6
7AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
8HEAD = head.o

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

40ifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
41ifeq ($(CONFIG_CPU_CP15),y)
42OBJS += big-endian.o
43else
44# The endian should be set by h/w design.
45endif
46endif
47
48ifeq ($(CONFIG_ARCH_SHMOBILE),y)
49OBJS += head-shmobile.o
50endif
51
48#
49# We now have a PIC decompressor implementation. Decompressors running
50# from RAM should not define ZTEXTADDR. Decompressors running directly
51# from ROM or Flash must define ZTEXTADDR (preferably via the config)
52# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK
53ifeq ($(CONFIG_ZBOOT_ROM),y)
54ZTEXTADDR := $(CONFIG_ZBOOT_ROM_TEXT)
55ZBSSADDR := $(CONFIG_ZBOOT_ROM_BSS)

--- 65 unchanged lines hidden ---
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)

--- 65 unchanged lines hidden ---