public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] armv7: fix linker file for newer ld support
@ 2010-11-02  3:23 Alexander Holler
  2010-11-02  4:05 ` Steve Sakoman
  0 siblings, 1 reply; 10+ messages in thread
From: Alexander Holler @ 2010-11-02  3:23 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Alexander Holler <holler@ahsoftware.de>
---
 arch/arm/cpu/armv7/u-boot.lds |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/arch/arm/cpu/armv7/u-boot.lds b/arch/arm/cpu/armv7/u-boot.lds
index 88a0fec..34e0a79 100644
--- a/arch/arm/cpu/armv7/u-boot.lds
+++ b/arch/arm/cpu/armv7/u-boot.lds
@@ -54,13 +54,6 @@ SECTIONS
 		*(.data.rel.ro)
 	}
 	. = ALIGN(4);
-	__rel_dyn_start = .;
-	.rel.dyn : { *(.rel.dyn) }
-	__rel_dyn_end = .;
-
-	__dynsym_start = .;
-	.dynsym : { *(.dynsym) }
-
 	__got_start = .;
 	. = ALIGN(4);
 	.got : { *(.got) }
@@ -74,4 +67,12 @@ SECTIONS
 	__bss_start = .;
 	.bss : { *(.bss) }
 	_end = .;
+
+	. = ALIGN(4);
+	__rel_dyn_start = .;
+	.rel.dyn : { *(.rel*) }
+	__rel_dyn_end = .;
+
+	__dynsym_start = .;
+	.dynsym : { *(.dynsym) }
 }
-- 
1.7.2.2

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

end of thread, other threads:[~2010-11-03 12:26 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-02  3:23 [U-Boot] [PATCH] armv7: fix linker file for newer ld support Alexander Holler
2010-11-02  4:05 ` Steve Sakoman
2010-11-02  7:48   ` Albert ARIBAUD
2010-11-02 13:08     ` Steve Sakoman
2010-11-02 16:28       ` Albert ARIBAUD
2010-11-02 16:56         ` Steve Sakoman
2010-11-02 17:00         ` Måns Rullgård
2010-11-02 17:38           ` Albert ARIBAUD
2010-11-03 12:26             ` Alexander Holler
2010-11-02 10:19   ` Alexander Holler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox