Re: [U-Boot] [PATCH v2 01/10] ARM: move interrupt_init to before relocation

2013-07-25 Thread Albert ARIBAUD
Hi Rob, On Wed, 12 Jun 2013 22:24:45 -0500, Rob Herring wrote: > From: Rob Herring > > interrupt_init also sets up the abort stack, but is not setup before > relocation. So any aborts during relocation will hang and not print out > any useful information. Fix this by moving the interrupt_init

[U-Boot] [PATCH v2 01/10] ARM: move interrupt_init to before relocation

2013-06-12 Thread Rob Herring
From: Rob Herring interrupt_init also sets up the abort stack, but is not setup before relocation. So any aborts during relocation will hang and not print out any useful information. Fix this by moving the interrupt_init to after the stack setup in board_init_f. Signed-off-by: Rob Herring --- v