Re: [PATCH v2 03/12] sandbox: Migrate getopt section to linker list

2022-05-02 Thread Tom Rini
On Mon, May 02, 2022 at 09:24:52AM -0700, Andrew Scull wrote: > On Fri, 29 Apr 2022 at 08:11, Tom Rini wrote: > > > > On Thu, Apr 14, 2022 at 01:59:32PM +, Andrew Scull wrote: > > > > > Use the common infrastructure to create a linker list of the sandbox > > > command line flags rather than

Re: [PATCH v2 03/12] sandbox: Migrate getopt section to linker list

2022-05-02 Thread Andrew Scull
On Fri, 29 Apr 2022 at 08:11, Tom Rini wrote: > > On Thu, Apr 14, 2022 at 01:59:32PM +, Andrew Scull wrote: > > > Use the common infrastructure to create a linker list of the sandbox > > command line flags rather than using a custom method. > > > > The list is changed from containing pointers

Re: [PATCH v2 03/12] sandbox: Migrate getopt section to linker list

2022-04-29 Thread Tom Rini
On Thu, Apr 14, 2022 at 01:59:32PM +, Andrew Scull wrote: > Use the common infrastructure to create a linker list of the sandbox > command line flags rather than using a custom method. > > The list is changed from containing pointers to containing structs and > the uses are updated

[PATCH v2 03/12] sandbox: Migrate getopt section to linker list

2022-04-14 Thread Andrew Scull
Use the common infrastructure to create a linker list of the sandbox command line flags rather than using a custom method. The list is changed from containing pointers to containing structs and the uses are updated accordingly. Signed-off-by: Andrew Scull Reviewed-by: Simon Glass ---