]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
Fix UML linker script, noted by Blaisorblade (missing . in .note), bad
authorChris Wright <chrisw@sous-sol.org>
Fri, 6 Apr 2007 19:56:22 +0000 (12:56 -0700)
committerChris Wright <chrisw@sous-sol.org>
Fri, 6 Apr 2007 19:56:22 +0000 (12:56 -0700)
patch in 2.6.20.5

queue-2.6.20/series
queue-2.6.20/uml-fix-static-linking-for-real.patch [new file with mode: 0644]

index 68d4ef9ce14c2d8fe127a6eef7060e47cd0b9988..7298a7a923e3918151db01e2d291c7fb267f2891 100644 (file)
@@ -1 +1,2 @@
+uml-fix-static-linking-for-real.patch
 crypto-api-use-the-right-value-when-advancing-scatterwalk_copychunks.patch
diff --git a/queue-2.6.20/uml-fix-static-linking-for-real.patch b/queue-2.6.20/uml-fix-static-linking-for-real.patch
new file mode 100644 (file)
index 0000000..4364ba4
--- /dev/null
@@ -0,0 +1,28 @@
+From c35e584c087381aaa5f1ed40a28b978535c18fb2 Mon Sep 17 00:00:00 2001
+From: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
+Date: Sat, 31 Mar 2007 03:20:27 +0200
+Subject: [PATCH] uml: fix static linking for real
+
+There was a typo in commit b40b478e9972ec14cf144f1a03f88918789cbfe0,
+preventing it from working - 32bit binaries crashed hopelessly before
+the below fix and work perfectly now.
+
+Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
+Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
+[chrisw: update changelog to reflect -stable commit id]
+Signed-off-by: Chris Wright <chrisw@sous-sol.org>
+---
+ include/asm-um/common.lds.S |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- linux-2.6.20.5.orig/include/asm-um/common.lds.S
++++ linux-2.6.20.5/include/asm-um/common.lds.S
+@@ -15,7 +15,7 @@
+   PROVIDE (_unprotected_end = .);
+   . = ALIGN(4096);
+-  .note : { *(note.*) }
++  .note : { *(.note.*) }
+   __start___ex_table = .;
+   __ex_table : { *(__ex_table) }
+   __stop___ex_table = .;