Re: [U-Boot] [PATCH 4/4] armv7: fix relocation skip

2010-12-09 Thread Albert ARIBAUD
Le 01/12/2010 00:58, Andreas Bießmann a écrit : > I doubt the stack_setup() was defective before: > we load the current location of _start and compare against destination > of relocate_code(). If we are already there we shoud skip the > relocation and jump over to clear_bss. Before the clear_

Re: [U-Boot] [PATCH 4/4] armv7: fix relocation skip

2010-12-08 Thread Wolfgang Denk
Dear =?UTF-8?q?Andreas=20Bie=C3=9Fmann?=, In message <1291161516-21861-5-git-send-email-andreas.de...@googlemail.com> you wrote: > I doubt the stack_setup() was defective before: > we load the current location of _start and compare against destination > of relocate_code(). If we are already the

Re: [U-Boot] [PATCH 4/4] armv7: fix relocation skip

2010-11-30 Thread Albert ARIBAUD
Le 01/12/2010 00:58, Andreas Bießmann a écrit : > I doubt the stack_setup() was defective before: > we load the current location of _start and compare against destination > of relocate_code(). If we are already there we shoud skip the > relocation and jump over to clear_bss. Before the clear

[U-Boot] [PATCH 4/4] armv7: fix relocation skip

2010-11-30 Thread Andreas Bießmann
I doubt the stack_setup() was defective before: we load the current location of _start and compare against destination of relocate_code(). If we are already there we shoud skip the relocation and jump over to clear_bss. Before the clear_bss was also skipped. Signed-off-by: Andreas Bießmann ---