Re: [PATCH v4 2/3] binman: Support help messages for missing blobs

2020-09-26 Thread Simon Glass
On 09/09/2020 02:56, Simon Glass wrote: > On Tue, 8 Sep 2020 at 10:37, Alper Nebi Yasak > wrote: >> >> result = {} >> tag = None >> for line in my_data.decode('utf-8').splitlines(): >> m_tag = re_tag.match(line) >> if line.startswith('#'): >> continue >>

Re: [PATCH v4 2/3] binman: Support help messages for missing blobs

2020-09-09 Thread Alper Nebi Yasak
On 09/09/2020 02:56, Simon Glass wrote: > On Tue, 8 Sep 2020 at 10:37, Alper Nebi Yasak > wrote: >> >> result = {} >> tag = None >> for line in my_data.decode('utf-8').splitlines(): >> m_tag = re_tag.match(line) >> if line.startswith('#'): >> continue >>

Re: [PATCH v4 2/3] binman: Support help messages for missing blobs

2020-09-08 Thread Simon Glass
Hi Alper, On Tue, 8 Sep 2020 at 10:37, Alper Nebi Yasak wrote: > > On 06/09/2020 19:39, Simon Glass wrote: > > When an external blob is missing it can be quite confusing for the user. > > Add a way to provide a help message that is shown. > > > > Signed-off-by: Simon Glass > > --- > > > > (no ch

Re: [PATCH v4 2/3] binman: Support help messages for missing blobs

2020-09-08 Thread Alper Nebi Yasak
On 06/09/2020 19:39, Simon Glass wrote: > When an external blob is missing it can be quite confusing for the user. > Add a way to provide a help message that is shown. > > Signed-off-by: Simon Glass > --- > > (no changes since v3) > > Changes in v3: > - Add a way to show help messages for missi