Re: [U-Boot] [RFC PATCH 6/7] reboard: arm: Move over to generic relocation

2011-12-08 Thread Simon Glass
Hi Mike, On Mon, Nov 28, 2011 at 7:14 PM, Mike Frysinger wrote: > On Monday 21 November 2011 18:57:59 Simon Glass wrote: >> --- a/board/reloc.c >> +++ b/board/reloc.c >> >> -void relocate_code(ulong dest_addr_sp, gd_t *new_gd, ulong dest_addr) >> +void new_relocate_code(ulong dest_addr_sp, gd_t *

Re: [U-Boot] [RFC PATCH 6/7] reboard: arm: Move over to generic relocation

2011-11-28 Thread Mike Frysinger
On Monday 21 November 2011 18:57:59 Simon Glass wrote: > --- a/board/reloc.c > +++ b/board/reloc.c > > -void relocate_code(ulong dest_addr_sp, gd_t *new_gd, ulong dest_addr) > +void new_relocate_code(ulong dest_addr_sp, gd_t *new_gd, ulong dest_addr) shouldn't this be squashed into the patch that

[U-Boot] [RFC PATCH 6/7] reboard: arm: Move over to generic relocation

2011-11-21 Thread Simon Glass
Switch ARM over to generic relocation - unfortunately a few boards need to be modified to make this work. We rename the relocate_code() function here so that the existing start.S implementations are still used for now. The next commit does the actual switch. Signed-off-by: Simon Glass --- arch/a