Re: [U-Boot] [PATCH v3 01/19] SPL: FIT: refactor FDT loading

2017-04-24 Thread Peter Robinson
On Fri, Mar 31, 2017 at 11:31 PM, 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 "descript

Re: [U-Boot] [PATCH v3 01/19] SPL: FIT: refactor FDT loading

2017-04-05 Thread Simon Glass
On 31 March 2017 at 16:31, 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 "description" st

[U-Boot] [PATCH v3 01/19] SPL: FIT: refactor FDT loading

2017-03-31 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. If