Re: [PATCH v2 12/25] binman: Change how faked blobs are created

2022-03-14 Thread Simon Glass
Hi Alper, On Mon, 14 Mar 2022 at 15:31, Alper Nebi Yasak wrote: > > On 12/03/2022 08:02, Simon Glass wrote: > > On Thu, 10 Mar 2022 at 12:36, Alper Nebi Yasak > > wrote: > >> On 06/03/2022 06:08, Simon Glass wrote: > >>> On Thu, 3 Mar 2022 at 14:16, Alper Nebi Yasak > >>> wrote: > Do we

Re: [PATCH v2 12/25] binman: Change how faked blobs are created

2022-03-14 Thread Alper Nebi Yasak
On 12/03/2022 08:02, Simon Glass wrote: > On Thu, 10 Mar 2022 at 12:36, Alper Nebi Yasak > wrote: >> On 06/03/2022 06:08, Simon Glass wrote: >>> On Thu, 3 Mar 2022 at 14:16, Alper Nebi Yasak >>> wrote: Do we need to create actual files, or is it a convenience thing for blob entry

Re: [PATCH v2 12/25] binman: Change how faked blobs are created

2022-03-11 Thread Simon Glass
Hi Alper, On Thu, 10 Mar 2022 at 12:36, Alper Nebi Yasak wrote: > > On 06/03/2022 06:08, Simon Glass wrote: > > On Thu, 3 Mar 2022 at 14:16, Alper Nebi Yasak > > wrote: > >> On 24/02/2022 02:00, Simon Glass wrote: > >>> +- Put faked files into a separate subdir and remove them on start-up, to

Re: [PATCH v2 12/25] binman: Change how faked blobs are created

2022-03-10 Thread Alper Nebi Yasak
On 06/03/2022 06:08, Simon Glass wrote: > On Thu, 3 Mar 2022 at 14:16, Alper Nebi Yasak > wrote: >> On 24/02/2022 02:00, Simon Glass wrote: >>> +- Put faked files into a separate subdir and remove them on start-up, to >>> avoid >>> + seeing them as 'real' files on a subsequent run >> >> Do we

Re: [PATCH v2 12/25] binman: Change how faked blobs are created

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 fake blobs are created but internally an empty blob is used. > > Change it to use the contents of the faked file. Also return whether the > > blob was faked, in case the

Re: [PATCH v2 12/25] binman: Change how faked blobs are created

2022-03-03 Thread Alper Nebi Yasak
On 24/02/2022 02:00, Simon Glass wrote: > At present fake blobs are created but internally an empty blob is used. > Change it to use the contents of the faked file. Also return whether the > blob was faked, in case the caller needs to know that. > > Add a TODO to put fake blobs in their own

[PATCH v2 12/25] binman: Change how faked blobs are created

2022-02-23 Thread Simon Glass
At present fake blobs are created but internally an empty blob is used. Change it to use the contents of the faked file. Also return whether the blob was faked, in case the caller needs to know that. Add a TODO to put fake blobs in their own directory. Signed-off-by: Simon Glass --- Changes in