Re: [PATCH v3 1/7] util: introduce a parser for kernel cmdline arguments

2020-06-15 Thread Paulo de Rezende Pinatti
On 15/06/20 17:46, Erik Skultety wrote: On Mon, Jun 15, 2020 at 04:49:10PM +0200, Paulo de Rezende Pinatti wrote: On 15/06/20 16:16, Erik Skultety wrote: On Mon, Jun 15, 2020 at 10:28:06AM +0200, Paulo de Rezende Pinatti wrote: Introduce two utility functions to parse a kernel command

Re: [PATCH v3 1/7] util: introduce a parser for kernel cmdline arguments

2020-06-15 Thread Erik Skultety
On Mon, Jun 15, 2020 at 04:49:10PM +0200, Paulo de Rezende Pinatti wrote: > > > On 15/06/20 16:16, Erik Skultety wrote: > > On Mon, Jun 15, 2020 at 10:28:06AM +0200, Paulo de Rezende Pinatti wrote: > > > Introduce two utility functions to parse a kernel command > > > line string according to the

Re: [PATCH v3 1/7] util: introduce a parser for kernel cmdline arguments

2020-06-15 Thread Paulo de Rezende Pinatti
On 15/06/20 16:16, Erik Skultety wrote: On Mon, Jun 15, 2020 at 10:28:06AM +0200, Paulo de Rezende Pinatti wrote: Introduce two utility functions to parse a kernel command line string according to the kernel code parsing rules in order to enable the caller to perform operations such as

Re: [PATCH v3 1/7] util: introduce a parser for kernel cmdline arguments

2020-06-15 Thread Erik Skultety
On Mon, Jun 15, 2020 at 10:28:06AM +0200, Paulo de Rezende Pinatti wrote: > Introduce two utility functions to parse a kernel command > line string according to the kernel code parsing rules in > order to enable the caller to perform operations such as > verifying whether certain argument=value

[PATCH v3 1/7] util: introduce a parser for kernel cmdline arguments

2020-06-15 Thread Paulo de Rezende Pinatti
Introduce two utility functions to parse a kernel command line string according to the kernel code parsing rules in order to enable the caller to perform operations such as verifying whether certain argument=value combinations are present or retrieving an argument's value. Signed-off-by: Paulo de