All of lore.kernel.org
 help / color / mirror / Atom feed
* [uml-devel] [PATCH] [PATCH] uml: fix static linking for real
@ 2007-03-31  1:20 ` Paolo 'Blaisorblade' Giarrusso
  0 siblings, 0 replies; 4+ messages in thread
From: Paolo 'Blaisorblade' Giarrusso @ 2007-03-31  1:20 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Jeff Dike, linux-kernel, user-mode-linux-devel

There was a typo in commit 7632fc8f809a97f9d82ce125e8e3e579390ce2e5, preventing
it from working - 32bit binaries crashed hopelessly before the below fix and
work perfectly now.
Merge for 2.6.21, please.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
---

 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 b16222b..f5de80c 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 = .;




-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] [PATCH] uml: fix static linking for real
@ 2007-03-31  1:20 ` Paolo 'Blaisorblade' Giarrusso
  0 siblings, 0 replies; 4+ messages in thread
From: Paolo 'Blaisorblade' Giarrusso @ 2007-03-31  1:20 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Jeff Dike, linux-kernel, user-mode-linux-devel

There was a typo in commit 7632fc8f809a97f9d82ce125e8e3e579390ce2e5, preventing
it from working - 32bit binaries crashed hopelessly before the below fix and
work perfectly now.
Merge for 2.6.21, please.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
---

 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 b16222b..f5de80c 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 = .;




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [uml-devel] [PATCH] [PATCH] uml: fix static linking for real
  2007-03-31  1:20 ` Paolo 'Blaisorblade' Giarrusso
@ 2007-03-31  3:12   ` Jeff Dike
  -1 siblings, 0 replies; 4+ messages in thread
From: Jeff Dike @ 2007-03-31  3:12 UTC (permalink / raw)
  To: Paolo 'Blaisorblade' Giarrusso
  Cc: Linus Torvalds, linux-kernel, user-mode-linux-devel

On Sat, Mar 31, 2007 at 03:20:27AM +0200, Paolo 'Blaisorblade' Giarrusso wrote:
> There was a typo in commit 7632fc8f809a97f9d82ce125e8e3e579390ce2e5, preventing
> it from working - 32bit binaries crashed hopelessly before the below fix and
> work perfectly now.
> Merge for 2.6.21, please.

ACK.

	Jeff

-- 
Work email - jdike at linux dot intel dot com

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] [PATCH] uml: fix static linking for real
@ 2007-03-31  3:12   ` Jeff Dike
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff Dike @ 2007-03-31  3:12 UTC (permalink / raw)
  To: Paolo 'Blaisorblade' Giarrusso
  Cc: Linus Torvalds, linux-kernel, user-mode-linux-devel

On Sat, Mar 31, 2007 at 03:20:27AM +0200, Paolo 'Blaisorblade' Giarrusso wrote:
> There was a typo in commit 7632fc8f809a97f9d82ce125e8e3e579390ce2e5, preventing
> it from working - 32bit binaries crashed hopelessly before the below fix and
> work perfectly now.
> Merge for 2.6.21, please.

ACK.

	Jeff

-- 
Work email - jdike at linux dot intel dot com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-03-31  3:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-31  1:20 [uml-devel] [PATCH] [PATCH] uml: fix static linking for real Paolo 'Blaisorblade' Giarrusso
2007-03-31  1:20 ` Paolo 'Blaisorblade' Giarrusso
2007-03-31  3:12 ` [uml-devel] " Jeff Dike
2007-03-31  3:12   ` Jeff Dike

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.