changeset 1512:ade54c27b90d

Remove a patch that was merged into linux 3.3.
author Rob Landley <rob@landley.net>
date Thu, 22 Mar 2012 20:36:36 -0500
parents e59de35d8437
children 06c06aeaf547
files sources/patches/linux-fixarm.patch
diffstat 1 files changed, 0 insertions(+), 23 deletions(-) [+]
line wrap: on
line diff
--- 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 <nicolas.pitre@linaro.org>
-    Acked-by: Tony Lindgren <tony@atomide.com>
-    Tested-by: Shawn Guo <shawn.guo@linaro.org>
-    Tested-by: Dave Martin <dave.martin@linaro.org>
-    Tested-by: Thomas Abraham <thomas.abraham@linaro.org>
-
-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)