aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPaolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>2007-03-30 21:20:27 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-03-30 22:21:30 -0400
commitc35e584c087381aaa5f1ed40a28b978535c18fb2 (patch)
tree3792eefee615bda5e97518c5769b2a1a5f3973ea /include
parenta5bd1786fb30abe663b904f6d79bba413e9ba883 (diff)
[PATCH] uml: fix static linking for real
There was a typo in commit 7632fc8f809a97f9d82ce125e8e3e579390ce2e5, 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>
Diffstat (limited to 'include')
-rw-r--r--include/asm-um/common.lds.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-um/common.lds.S b/include/asm-um/common.lds.S
index b16222b42821..f5de80c31e88 100644
--- a/include/asm-um/common.lds.S
+++ b/include/asm-um/common.lds.S
@@ -15,7 +15,7 @@
15 PROVIDE (_unprotected_end = .); 15 PROVIDE (_unprotected_end = .);
16 16
17 . = ALIGN(4096); 17 . = ALIGN(4096);
18 .note : { *(note.*) } 18 .note : { *(.note.*) }
19 __start___ex_table = .; 19 __start___ex_table = .;
20 __ex_table : { *(__ex_table) } 20 __ex_table : { *(__ex_table) }
21 __stop___ex_table = .; 21 __stop___ex_table = .;