Re: [PATCH v5 12/29] image: Drop IMAGE_BOOT_GET_CMDLINE

2021-10-08 Thread Tom Rini
On Sat, Sep 25, 2021 at 07:43:25PM -0600, Simon Glass wrote: > This is not needed with Kconfig, since we can use IS_ENABLED() easily > enough and the board code is now in a separate file. Update the only place > where this is used and drop it. > > Signed-off-by: Simon Glass > Reviewed-by:

Re: [PATCH v5 12/29] image: Drop IMAGE_BOOT_GET_CMDLINE

2021-10-05 Thread Alex G.
On 9/25/21 8:43 PM, Simon Glass wrote: This is not needed with Kconfig, since we can use IS_ENABLED() easily enough and the board code is now in a separate file. Update the only place where this is used and drop it. Signed-off-by: Simon Glass Reviewed-by: Alexandru Gagniuc --- Changes

[PATCH v5 12/29] image: Drop IMAGE_BOOT_GET_CMDLINE

2021-09-25 Thread Simon Glass
This is not needed with Kconfig, since we can use IS_ENABLED() easily enough and the board code is now in a separate file. Update the only place where this is used and drop it. Signed-off-by: Simon Glass --- Changes in v5: - Update commit message to indicate that the code is in a separate file