diff options
author | Nicolas Pitre <nicolas.pitre@linaro.org> | 2011-04-19 15:42:43 -0400 |
---|---|---|
committer | Nicolas Pitre <nico@fluxnic.net> | 2011-05-07 00:07:59 -0400 |
commit | 34cc1a8fe0d3f89f3602b49f1121a99d2bfc5efc (patch) | |
tree | d8c70249ddd62093a3074996fd8b25b46a4ad211 /arch/arm/boot/compressed/Makefile | |
parent | ea9df3b168e641e87dbf889afae16390119e4179 (diff) | |
download | kernel_samsung_tuna-34cc1a8fe0d3f89f3602b49f1121a99d2bfc5efc.zip kernel_samsung_tuna-34cc1a8fe0d3f89f3602b49f1121a99d2bfc5efc.tar.gz kernel_samsung_tuna-34cc1a8fe0d3f89f3602b49f1121a99d2bfc5efc.tar.bz2 |
ARM: zImage: no need to get the decompressed size from the filesystem
In commit d239b1dc093d the hardcoded 4x estimate for the decompressed
kernel size was replaced by the exact Image file size and passed to
the linker as a symbol value. Turns out that this is unneeded as the
size is already included at the end of the compressed piggy data.
For those compressed formats that don't include this data, the build
system already takes care of appending it using size_append in
scripts/Makefile.lib. So let's use that instead.
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Tested-by: Shawn Guo <shawn.guo@linaro.org>
Tested-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot/compressed/Makefile')
-rw-r--r-- | arch/arm/boot/compressed/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile index 0c6852d..79b5c62 100644 --- a/arch/arm/boot/compressed/Makefile +++ b/arch/arm/boot/compressed/Makefile @@ -98,8 +98,6 @@ endif ccflags-y := -fpic -fno-builtin asflags-y := -Wa,-march=all -# Provide size of uncompressed kernel to the decompressor via a linker symbol. -LDFLAGS_vmlinux = --defsym _image_size=$(shell stat -c "%s" $(obj)/../Image) # Supply ZRELADDR to the decompressor via a linker symbol. ifneq ($(CONFIG_AUTO_ZRELADDR),y) LDFLAGS_vmlinux += --defsym zreladdr=$(ZRELADDR) |