diff options
author | Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> | 2007-03-31 03:20:27 +0200 |
---|---|---|
committer | Chris Wright <chrisw@sous-sol.org> | 2007-04-06 13:02:33 -0700 |
commit | 470cf5d01d702afb4fa0900c6085b39fb03aa899 (patch) | |
tree | f73d6879196ef20b10ee7506f6ba2aa11cb55d76 | |
parent | 30944b3a446917d34e559c354586c023d9829ac0 (diff) |
[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>
-rw-r--r-- | include/asm-um/common.lds.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-um/common.lds.S b/include/asm-um/common.lds.S index b16222b4282..f5de80c31e8 100644 --- a/include/asm-um/common.lds.S +++ b/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 = .; |