2005-04-17 05:20:36 +07:00
|
|
|
#
|
|
|
|
# linux/arch/arm/boot/compressed/Makefile
|
|
|
|
#
|
|
|
|
# create a compressed vmlinuz image from the original vmlinux
|
|
|
|
#
|
|
|
|
|
2010-07-05 20:56:50 +07:00
|
|
|
AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
|
2005-04-17 05:20:36 +07:00
|
|
|
HEAD = head.o
|
ARM: Eliminate decompressor -Dstatic= PIC hack
We used to build decompressors with -Dstatic= to avoid any local data
being generated. The problem is that local data generates GOTOFF
relocations, which means we can't relocate the data relative to the
text segment.
Global data, on the other hand, goes through the GOT, and can be
relocated anywhere.
Unfortunately, with the new decompressors, this presents a problem
since they declare static data within functions, and this leads to
stack overflow.
Fix this by separating out the decompressor code into a separate file,
and removing 'static' from BSS data in misc.c.
Also, discard the .data section - this means that should we end up
with read/write initialized data, the decompressor will fail to link
and the problem will be obvious.
Acked-by: Nicolas Pitre <nico@fluxnic.net>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2010-02-25 19:14:40 +07:00
|
|
|
OBJS = misc.o decompress.o
|
2007-06-04 00:54:42 +07:00
|
|
|
FONTC = $(srctree)/drivers/video/console/font_acorn_8x8.c
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
#
|
|
|
|
# Architecture dependencies
|
|
|
|
#
|
|
|
|
ifeq ($(CONFIG_ARCH_ACORN),y)
|
2007-06-04 00:54:42 +07:00
|
|
|
OBJS += ll_char_wr.o font.o
|
2005-04-17 05:20:36 +07:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_SHARK),y)
|
|
|
|
OBJS += head-shark.o ofw-shark.o
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_P720T),y)
|
|
|
|
# Borrow this code from SA1100
|
|
|
|
OBJS += head-sa1100.o
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_SA1100),y)
|
|
|
|
OBJS += head-sa1100.o
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_CPU_XSCALE),y)
|
|
|
|
OBJS += head-xscale.o
|
|
|
|
endif
|
|
|
|
|
2010-06-23 08:27:32 +07:00
|
|
|
ifeq ($(CONFIG_PXA_SHARPSL_DETECT_MACH_ID),y)
|
2005-04-17 05:20:36 +07:00
|
|
|
OBJS += head-sharpsl.o
|
|
|
|
endif
|
|
|
|
|
2009-05-30 20:00:18 +07:00
|
|
|
ifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
|
2006-09-26 15:36:37 +07:00
|
|
|
ifeq ($(CONFIG_CPU_CP15),y)
|
2005-04-17 05:20:36 +07:00
|
|
|
OBJS += big-endian.o
|
2006-09-26 15:36:37 +07:00
|
|
|
else
|
|
|
|
# The endian should be set by h/w design.
|
|
|
|
endif
|
2005-04-17 05:20:36 +07:00
|
|
|
endif
|
|
|
|
|
2010-12-01 13:45:00 +07:00
|
|
|
ifeq ($(CONFIG_ARCH_SHMOBILE),y)
|
|
|
|
OBJS += head-shmobile.o
|
|
|
|
endif
|
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
#
|
|
|
|
# We now have a PIC decompressor implementation. Decompressors running
|
|
|
|
# from RAM should not define ZTEXTADDR. Decompressors running directly
|
|
|
|
# from ROM or Flash must define ZTEXTADDR (preferably via the config)
|
|
|
|
# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK
|
|
|
|
ifeq ($(CONFIG_ZBOOT_ROM),y)
|
|
|
|
ZTEXTADDR := $(CONFIG_ZBOOT_ROM_TEXT)
|
|
|
|
ZBSSADDR := $(CONFIG_ZBOOT_ROM_BSS)
|
|
|
|
else
|
|
|
|
ZTEXTADDR := 0
|
|
|
|
ZBSSADDR := ALIGN(4)
|
|
|
|
endif
|
|
|
|
|
|
|
|
SEDFLAGS = s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/
|
|
|
|
|
2010-01-09 05:42:43 +07:00
|
|
|
suffix_$(CONFIG_KERNEL_GZIP) = gzip
|
|
|
|
suffix_$(CONFIG_KERNEL_LZO) = lzo
|
2010-04-03 17:40:28 +07:00
|
|
|
suffix_$(CONFIG_KERNEL_LZMA) = lzma
|
2010-01-09 05:42:43 +07:00
|
|
|
|
|
|
|
targets := vmlinux vmlinux.lds \
|
|
|
|
piggy.$(suffix_y) piggy.$(suffix_y).o \
|
|
|
|
font.o font.c head.o misc.o $(OBJS)
|
2008-05-31 15:53:50 +07:00
|
|
|
|
2010-07-28 11:46:21 +07:00
|
|
|
# Make sure files are removed during clean
|
|
|
|
extra-y += piggy.gzip piggy.lzo piggy.lzma lib1funcs.S
|
|
|
|
|
2008-10-07 06:06:12 +07:00
|
|
|
ifeq ($(CONFIG_FUNCTION_TRACER),y)
|
2008-05-31 15:53:50 +07:00
|
|
|
ORIG_CFLAGS := $(KBUILD_CFLAGS)
|
|
|
|
KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
|
|
|
|
endif
|
|
|
|
|
2007-07-11 17:29:28 +07:00
|
|
|
EXTRA_CFLAGS := -fpic -fno-builtin
|
2008-09-09 19:56:45 +07:00
|
|
|
EXTRA_AFLAGS := -Wa,-march=all
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2011-02-21 10:57:38 +07:00
|
|
|
# Provide size of uncompressed kernel to the decompressor via a linker symbol.
|
|
|
|
LDFLAGS_vmlinux := --defsym _image_size=$(shell stat -c "%s" $(obj)/../Image)
|
2010-09-10 04:39:41 +07:00
|
|
|
# Supply ZRELADDR to the decompressor via a linker symbol.
|
|
|
|
ifneq ($(CONFIG_AUTO_ZRELADDR),y)
|
2011-02-21 10:57:38 +07:00
|
|
|
LDFLAGS_vmlinux += --defsym zreladdr=$(ZRELADDR)
|
2010-09-10 04:39:41 +07:00
|
|
|
endif
|
2009-05-30 20:00:18 +07:00
|
|
|
ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
|
|
|
|
LDFLAGS_vmlinux += --be8
|
|
|
|
endif
|
2010-01-09 05:42:43 +07:00
|
|
|
# ?
|
|
|
|
LDFLAGS_vmlinux += -p
|
|
|
|
# Report unresolved symbol references
|
|
|
|
LDFLAGS_vmlinux += --no-undefined
|
|
|
|
# Delete all temporary local symbols
|
|
|
|
LDFLAGS_vmlinux += -X
|
|
|
|
# Next argument is a linker script
|
|
|
|
LDFLAGS_vmlinux += -T
|
|
|
|
|
|
|
|
# For __aeabi_uidivmod
|
|
|
|
lib1funcs = $(obj)/lib1funcs.o
|
|
|
|
|
|
|
|
$(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S FORCE
|
|
|
|
$(call cmd,shipped)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2010-01-09 05:42:43 +07:00
|
|
|
$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
|
|
|
|
$(addprefix $(obj)/, $(OBJS)) $(lib1funcs) FORCE
|
2005-04-17 05:20:36 +07:00
|
|
|
$(call if_changed,ld)
|
|
|
|
@:
|
|
|
|
|
2010-01-09 05:42:43 +07:00
|
|
|
$(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE
|
|
|
|
$(call if_changed,$(suffix_y))
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2010-01-09 05:42:43 +07:00
|
|
|
$(obj)/piggy.$(suffix_y).o: $(obj)/piggy.$(suffix_y) FORCE
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2007-06-04 00:54:42 +07:00
|
|
|
CFLAGS_font.o := -Dstatic=
|
|
|
|
|
|
|
|
$(obj)/font.c: $(FONTC)
|
|
|
|
$(call cmd,shipped)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2010-09-19 22:16:58 +07:00
|
|
|
$(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/arm/boot/Makefile $(KCONFIG_CONFIG)
|
2005-04-17 05:20:36 +07:00
|
|
|
@sed "$(SEDFLAGS)" < $< > $@
|