Makefile (95d465fd750897ab32462a6702fbfe1b122cbbc0) | Makefile (f12d0d7c7786af39435ef6ae9defe47fb58f6091) |
---|---|
1# 2# linux/arch/arm/boot/compressed/Makefile 3# 4# create a compressed vmlinuz image from the original vmlinux 5# 6 7HEAD = head.o 8OBJS = misc.o --- 37 unchanged lines hidden (view full) --- 46OBJS += head-sharpsl.o 47endif 48 49ifeq ($(CONFIG_ARCH_AT91RM9200),y) 50OBJS += head-at91rm9200.o 51endif 52 53ifeq ($(CONFIG_CPU_BIG_ENDIAN),y) | 1# 2# linux/arch/arm/boot/compressed/Makefile 3# 4# create a compressed vmlinuz image from the original vmlinux 5# 6 7HEAD = head.o 8OBJS = misc.o --- 37 unchanged lines hidden (view full) --- 46OBJS += head-sharpsl.o 47endif 48 49ifeq ($(CONFIG_ARCH_AT91RM9200),y) 50OBJS += head-at91rm9200.o 51endif 52 53ifeq ($(CONFIG_CPU_BIG_ENDIAN),y) |
54ifeq ($(CONFIG_CPU_CP15),y) |
|
54OBJS += big-endian.o | 55OBJS += big-endian.o |
56else 57# The endian should be set by h/w design. |
|
55endif | 58endif |
59endif |
|
56 57# 58# We now have a PIC decompressor implementation. Decompressors running 59# from RAM should not define ZTEXTADDR. Decompressors running directly 60# from ROM or Flash must define ZTEXTADDR (preferably via the config) 61# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK 62ifeq ($(CONFIG_ZBOOT_ROM),y) 63ZTEXTADDR := $(CONFIG_ZBOOT_ROM_TEXT) --- 47 unchanged lines hidden --- | 60 61# 62# We now have a PIC decompressor implementation. Decompressors running 63# from RAM should not define ZTEXTADDR. Decompressors running directly 64# from ROM or Flash must define ZTEXTADDR (preferably via the config) 65# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK 66ifeq ($(CONFIG_ZBOOT_ROM),y) 67ZTEXTADDR := $(CONFIG_ZBOOT_ROM_TEXT) --- 47 unchanged lines hidden --- |