Re: [PATCH 1/2] bootstd: Handle a few special cases in cmdline_set_arg()

2023-11-02 Thread Tom Rini
On Wed, Oct 25, 2023 at 07:17:36AM +1300, Simon Glass wrote: > Two bugs have appeared: > > - arguments can have an equals sign embedded in them, which must be > considered part of the value > - arguments must fully match the name; partial matches should be > ignored > > Fix these and add a t

[PATCH 1/2] bootstd: Handle a few special cases in cmdline_set_arg()

2023-10-24 Thread Simon Glass
Two bugs have appeared: - arguments can have an equals sign embedded in them, which must be considered part of the value - arguments must fully match the name; partial matches should be ignored Fix these and add a test to cover both. Signed-off-by: Simon Glass --- boot/bootflow.c |