Re: [U-Boot] [PATCH RFC] mpc8572ds relocatable

2008-10-13 Thread Joakim Tjernlund
On Mon, 2008-10-13 at 00:53 +0200, Wolfgang Denk wrote: Dear Ed Swarthout, In message [EMAIL PROTECTED] you wrote: Fixes boot crash from bad string pointers in get_table_entry_name when flash is erased or differs from current u-boot image. Signed-off-by: Ed Swarthout [EMAIL PROTECTED]

Re: [U-Boot] [PATCH RFC] mpc8572ds relocatable

2008-10-13 Thread Swarthout Edward L
From: Joakim Tjernlund [mailto:[EMAIL PROTECTED] The __eabi_uconvert() function skips NULL ptrs. Perhaps this is the missing piece needed in start.S for PPC? I'm not seeing any zeros in the .got2 or .fixup entries in the .reloc section on 85xx when compiling with -mrelocatable. So I

Re: [U-Boot] [PATCH RFC] mpc8572ds relocatable

2008-10-12 Thread Wolfgang Denk
Dear Ed Swarthout, In message [EMAIL PROTECTED] you wrote: Fixes boot crash from bad string pointers in get_table_entry_name when flash is erased or differs from current u-boot image. Signed-off-by: Ed Swarthout [EMAIL PROTECTED] --- Fix was pointed out by Peter Tyser in Image.c

Re: [U-Boot] [PATCH RFC] mpc8572ds relocatable

2008-10-12 Thread Graeme Russ
Wolfgang, On Mon, Oct 13, 2008 at 9:53 AM, Wolfgang Denk [EMAIL PROTECTED] wrote: Dear Ed Swarthout, In message [EMAIL PROTECTED] you wrote: Fixes boot crash from bad string pointers in get_table_entry_name when flash is erased or differs from current u-boot image. This is exactly the

[U-Boot] [PATCH RFC] mpc8572ds relocatable

2008-09-08 Thread Ed Swarthout
Fixes boot crash from bad string pointers in get_table_entry_name when flash is erased or differs from current u-boot image. Signed-off-by: Ed Swarthout [EMAIL PROTECTED] --- Fix was pointed out by Peter Tyser in Image.c get_table_entry_name thread. This redoes Grant Likey's relocation change,

Re: [U-Boot] [PATCH RFC] mpc8572ds relocatable

2008-09-08 Thread JerryVanBaren
Ed Swarthout wrote: Fixes boot crash from bad string pointers in get_table_entry_name when flash is erased or differs from current u-boot image. Signed-off-by: Ed Swarthout [EMAIL PROTECTED] --- Fix was pointed out by Peter Tyser in Image.c get_table_entry_name thread. This redoes