Re: [U-Boot] [PATCH 02/17] SPL: FIT: refactor FDT loading

2017-03-14 Thread Lokesh Vutla
On Wednesday 01 March 2017 07:55 AM, Andre Przywara wrote: > Currently the SPL FIT loader uses the spl_fit_select_fdt() function to > find the offset to the right DTB within the FIT image. > For this it iterates over all subnodes of the /configuration node in > the FIT tree and compares all

Re: [U-Boot] [PATCH 02/17] SPL: FIT: refactor FDT loading

2017-03-08 Thread Simon Glass
Hi Andre, On 3 March 2017 at 04:09, Andre Przywara wrote: > Hi Simon, > > On 03/03/17 04:53, Simon Glass wrote: >> Hi Andre, >> >> On 28 February 2017 at 19:25, Andre Przywara wrote: >>> Currently the SPL FIT loader uses the spl_fit_select_fdt()

Re: [U-Boot] [PATCH 02/17] SPL: FIT: refactor FDT loading

2017-03-03 Thread Andre Przywara
Hi Simon, On 03/03/17 04:53, Simon Glass wrote: > Hi Andre, > > On 28 February 2017 at 19:25, Andre Przywara wrote: >> Currently the SPL FIT loader uses the spl_fit_select_fdt() function to >> find the offset to the right DTB within the FIT image. >> For this it iterates

Re: [U-Boot] [PATCH 02/17] SPL: FIT: refactor FDT loading

2017-03-02 Thread Simon Glass
Hi Andre, On 28 February 2017 at 19:25, Andre Przywara wrote: > Currently the SPL FIT loader uses the spl_fit_select_fdt() function to > find the offset to the right DTB within the FIT image. > For this it iterates over all subnodes of the /configuration node in > the FIT

[U-Boot] [PATCH 02/17] SPL: FIT: refactor FDT loading

2017-02-28 Thread Andre Przywara
Currently the SPL FIT loader uses the spl_fit_select_fdt() function to find the offset to the right DTB within the FIT image. For this it iterates over all subnodes of the /configuration node in the FIT tree and compares all "description" strings therein using a board specific matching function.