[U-Boot] [PATCH 2/3] tx25: fix linker file for newer ld support

2010-11-01 Thread Albert Aribaud
From: Wolfgang Denk older ld emitted all ELF relocations in input sections named .rel.dyn, whereas newer ld uses names of the form .rel*. The linker script only collected .rel.dyn input sections. Fit it to collect all .rel* input sections. Signed-off-by: Albert Aribaud --- nand_spl/board/karo/

Re: [U-Boot] [PATCH 2/3] tx25: fix linker file for newer ld support

2010-11-01 Thread Wolfgang Denk
Dear Albert Aribaud, In message <1288642623-10783-2-git-send-email-albert.arib...@free.fr> you wrote: > From: Wolfgang Denk > > older ld emitted all ELF relocations in input sections named > .rel.dyn, whereas newer ld uses names of the form .rel*. The > linker script only collected .rel.dyn inpu

Re: [U-Boot] [PATCH 2/3] tx25: fix linker file for newer ld support

2010-11-02 Thread Albert ARIBAUD
Le 01/11/2010 23:11, Wolfgang Denk a écrit : >> __got_start = .; >> . = ALIGN(4); >> .got : { *(.got) } > > Do we still need this GOT entry? Indeed no, and we do not need the datarel entries either. I'm reposting a V2 patch set with these plus minor fixes to the arm926ejs linker f

Re: [U-Boot] [PATCH 2/3] tx25: fix linker file for newer ld support

2010-11-02 Thread Heiko Schocher
Hello Albert, Albert ARIBAUD wrote: > Le 01/11/2010 23:11, Wolfgang Denk a écrit : > >>> __got_start = .; >>> . = ALIGN(4); >>> .got : { *(.got) } >> Do we still need this GOT entry? > > Indeed no, and we do not need the datarel entries either. I'm reposting > a V2 patch set with th