Re: [PATCH v2 07/16] x86: zboot: Set up a sub-command structure

2020-09-05 Thread Simon Glass
Hi Bin, On Tue, 1 Sep 2020 at 03:30, Bin Meng wrote: > > Hi Simon, > > On Sun, Aug 30, 2020 at 5:42 AM Simon Glass wrote: > > > > Add subcommands to zboot. At present there is only one called 'start' > > which does the whole boot. It is the default command so is optional. > > > > Change the 's'

Re: [PATCH v2 07/16] x86: zboot: Set up a sub-command structure

2020-09-01 Thread Bin Meng
Hi Simon, On Sun, Aug 30, 2020 at 5:42 AM Simon Glass wrote: > > Add subcommands to zboot. At present there is only one called 'start' > which does the whole boot. It is the default command so is optional. > > Change the 's' string variable to const while we are here. > Signed-off-by: Simon Glass

Re: [PATCH v2 07/16] x86: zboot: Set up a sub-command structure

2020-08-31 Thread Wolfgang Wallner
Hi Simon, -"Simon Glass" schrieb: - > Betreff: [PATCH v2 07/16] x86: zboot: Set up a sub-command structure > > Add subcommands to zboot. At present there is only one called 'start' > which does the whole boot. It is the default command so is optional. >

[PATCH v2 07/16] x86: zboot: Set up a sub-command structure

2020-08-29 Thread Simon Glass
Add subcommands to zboot. At present there is only one called 'start' which does the whole boot. It is the default command so is optional. Change the 's' string variable to const while we are here. Signed-off-by: Simon Glass --- Changes in v2: - Fix comment about argv[0] in do_zboot_parent() a