Makefile (5d43889c07bb38694742936aa70d1187c012e198) Makefile (bf98c1eac1d4a6bcf00532e4fa41d8126cd6c187)
1#
2# linux/arch/arm/boot/compressed/Makefile
3#
4# create a compressed vmlinuz image from the original vmlinux
5#
6
7OBJS =
8

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

59ifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
60ifeq ($(CONFIG_CPU_CP15),y)
61OBJS += big-endian.o
62else
63# The endian should be set by h/w design.
64endif
65endif
66
1#
2# linux/arch/arm/boot/compressed/Makefile
3#
4# create a compressed vmlinuz image from the original vmlinux
5#
6
7OBJS =
8

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

59ifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
60ifeq ($(CONFIG_CPU_CP15),y)
61OBJS += big-endian.o
62else
63# The endian should be set by h/w design.
64endif
65endif
66
67ifeq ($(CONFIG_ARCH_SHMOBILE),y)
67ifeq ($(CONFIG_ARCH_SHMOBILE_LEGACY),y)
68OBJS += head-shmobile.o
69endif
70
71#
72# We now have a PIC decompressor implementation. Decompressors running
73# from RAM should not define ZTEXTADDR. Decompressors running directly
74# from ROM or Flash must define ZTEXTADDR (preferably via the config)
75# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK

--- 124 unchanged lines hidden ---
68OBJS += head-shmobile.o
69endif
70
71#
72# We now have a PIC decompressor implementation. Decompressors running
73# from RAM should not define ZTEXTADDR. Decompressors running directly
74# from ROM or Flash must define ZTEXTADDR (preferably via the config)
75# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK

--- 124 unchanged lines hidden ---