All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH] Fixed GOT bug for qemu_mips target
@ 2007-10-05 22:39 Vlad Lungu
  0 siblings, 0 replies; only message in thread
From: Vlad Lungu @ 2007-10-05 22:39 UTC (permalink / raw)
  To: u-boot

Idea by Robert Delien, I just take the credit for it :-)

Signed-off-by: Vlad Lungu <vlad@comsys.ro>
---
 board/qemu-mips/u-boot.lds |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/board/qemu-mips/u-boot.lds b/board/qemu-mips/u-boot.lds
index 10c9917..7c0098e 100644
--- a/board/qemu-mips/u-boot.lds
+++ b/board/qemu-mips/u-boot.lds
@@ -45,8 +45,9 @@ SECTIONS
 
 	. = ALIGN(4);
 	.sdata  : { *(.sdata) }
-
-	_gp = ALIGN(16);
+	
+	. = ALIGN(16);
+	_gp =.;
 
 	__got_start = .;
 	.got  : { *(.got) }
-- 
1.5.2.2

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2007-10-05 22:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-05 22:39 [U-Boot-Users] [PATCH] Fixed GOT bug for qemu_mips target Vlad Lungu

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.