From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexander Holler Date: Thu, 04 Nov 2010 11:46:08 +0100 Subject: [U-Boot] [PATCH V3 1/3] arm926ejs: fix linker file for newer ld support In-Reply-To: <4CD28A3E.60406@ahsoftware.de> References: <1288808663-15074-1-git-send-email-albert.aribaud@free.fr> <4CD28A3E.60406@ahsoftware.de> Message-ID: <4CD28EF0.5020506@ahsoftware.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Am 04.11.2010 11:26, schrieb Alexander Holler: > I've just tested that patch using my small test-patch: > > ----------------------------------------------------------- > Marvell>> g 0x700000 > ## Starting application at 0x00700000 ... > > > U-Boot 2010.12-rc1-00037-g0ab2006 (Nov 04 2010 - 11:14:24) > Seagate-DockStar > > SoC: Kirkwood 88F6281_A0 > DRAM: 128 MiB > (relocated) BSS is from 07fa8f60 to 07fef040 > &monitor_flash_len: 00752f60 > WARNING: relocation failed (&monitor_flash_len is outside reloctated BSS)! > ----------------------------------------------------------- So the suggested change from Steve Sakoman (reordered fix from Albert Aribaud) still seems to be the one to prefer. Here it is again: -------------------------- arch/arm/cpu/arm926ejs/u-boot.lds | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/u-boot.lds b/arch/arm/cpu/arm926ejs/u-boot.lds index 72f45f8..eefdca9 100644 --- a/arch/arm/cpu/arm926ejs/u-boot.lds +++ b/arch/arm/cpu/arm926ejs/u-boot.lds @@ -46,7 +46,7 @@ SECTIONS . = ALIGN(4); __rel_dyn_start = .; - .rel.dyn : { *(.rel.dyn) } + .rel.dyn : { *(.rel.*) } __rel_dyn_end = .; __dynsym_start = .; -- 1.7.2.2 -------------------------- Regards, Alexander