# HG changeset patch # User Rob Landley # Date 1332466596 18000 # Node ID ade54c27b90d29f1016a861ec3b95c3f7ae2ad4a # Parent e59de35d843720d69abb60864e87acdf1e7e49dd Remove a patch that was merged into linux 3.3. diff -r e59de35d8437 -r ade54c27b90d sources/patches/linux-fixarm.patch --- a/sources/patches/linux-fixarm.patch Wed Mar 21 17:48:10 2012 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -Commit 5ffb04f6690d71fab used the host "size" instead of the target "size". - -The people who didn't catch it are: - - Signed-off-by: Nicolas Pitre - Acked-by: Tony Lindgren - Tested-by: Shawn Guo - Tested-by: Dave Martin - Tested-by: Thomas Abraham - -diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile -index 21f56ff..efb0172 100644 ---- a/arch/arm/boot/compressed/Makefile -+++ b/arch/arm/boot/compressed/Makefile -@@ -126,7 +126,7 @@ ccflags-y := -fpic -fno-builtin -I$(obj) - asflags-y := -Wa,-march=all - - # Supply kernel BSS size to the decompressor via a linker symbol. --KBSS_SZ = $(shell size $(obj)/../../../../vmlinux | awk 'END{print $$3}') -+KBSS_SZ = $(shell $(CROSS_COMPILE)size $(obj)/../../../../vmlinux | awk 'END{print $$3}') - LDFLAGS_vmlinux = --defsym _kernel_bss_size=$(KBSS_SZ) - # Supply ZRELADDR to the decompressor via a linker symbol. - ifneq ($(CONFIG_AUTO_ZRELADDR),y)