Re: [PATCH v2 10/25] binman: Refactor fit to generate output at the end

2022-03-05 Thread Simon Glass
Hi Alper, On Thu, 3 Mar 2022 at 14:16, Alper Nebi Yasak wrote: > > On 24/02/2022 02:00, Simon Glass wrote: > > At present the fit implementation creates the output tree while > > scanning the FIT description. Then it updates the tree later when the > > data is known. > > > > This works, but is a

Re: [PATCH v2 10/25] binman: Refactor fit to generate output at the end

2022-03-03 Thread Alper Nebi Yasak
On 24/02/2022 02:00, Simon Glass wrote: > At present the fit implementation creates the output tree while > scanning the FIT description. Then it updates the tree later when the > data is known. > > This works, but is a bit confusing, since it requires mixing the scanning > code with the

[PATCH v2 10/25] binman: Refactor fit to generate output at the end

2022-02-23 Thread Simon Glass
At present the fit implementation creates the output tree while scanning the FIT description. Then it updates the tree later when the data is known. This works, but is a bit confusing, since it requires mixing the scanning code with the generation code, with a fix-up step at the end. It is