Re: [U-Boot] [PATCH v2 08/23] armv8: move reset branch into boot hook

2016-12-08 Thread Simon Glass
On 5 December 2016 at 08:43, Andre Przywara wrote: > Hi, > > On 05/12/16 06:25, Simon Glass wrote: >> Hi Andre, >> >> On 4 December 2016 at 18:52, Andre Przywara wrote: >>> The boot0 hook we have so far is applied _after_ the initial branch >>> to

Re: [U-Boot] [PATCH v2 08/23] armv8: move reset branch into boot hook

2016-12-05 Thread Andre Przywara
Hi, On 05/12/16 06:25, Simon Glass wrote: > Hi Andre, > > On 4 December 2016 at 18:52, Andre Przywara wrote: >> The boot0 hook we have so far is applied _after_ the initial branch >> to the "reset" entry point. An upcoming change requires even this >> branch to be

Re: [U-Boot] [PATCH v2 08/23] armv8: move reset branch into boot hook

2016-12-04 Thread Simon Glass
Hi Andre, On 4 December 2016 at 18:52, Andre Przywara wrote: > The boot0 hook we have so far is applied _after_ the initial branch > to the "reset" entry point. An upcoming change requires even this > branch to be changed, so we apply the hook macro at the earliest >

[U-Boot] [PATCH v2 08/23] armv8: move reset branch into boot hook

2016-12-04 Thread Andre Przywara
The boot0 hook we have so far is applied _after_ the initial branch to the "reset" entry point. An upcoming change requires even this branch to be changed, so we apply the hook macro at the earliest point, and have the branch in the hook file as well. This is no functional change at this point,