Re: [PATCH 02/14] bootm: Add a Kconfig option for bootm functionality

2023-12-11 Thread Simon Glass
Hi Tom, On Sat, 9 Dec 2023 at 11:39, Tom Rini wrote: > > On Sun, Dec 03, 2023 at 05:31:26PM -0700, Simon Glass wrote: > > > Create a separate Kconfig option which enables the bootm logic, > > separate from the 'bootm' command. This will eventually allow booting > > without CMDLINE enabled. > > >

Re: [PATCH 02/14] bootm: Add a Kconfig option for bootm functionality

2023-12-09 Thread Tom Rini
On Sun, Dec 03, 2023 at 05:31:26PM -0700, Simon Glass wrote: > Create a separate Kconfig option which enables the bootm logic, > separate from the 'bootm' command. This will eventually allow booting > without CMDLINE enabled. > > Update boards which disable CMD_BOOTM to disable BOOTM instead, sin

[PATCH 02/14] bootm: Add a Kconfig option for bootm functionality

2023-12-03 Thread Simon Glass
Create a separate Kconfig option which enables the bootm logic, separate from the 'bootm' command. This will eventually allow booting without CMDLINE enabled. Update boards which disable CMD_BOOTM to disable BOOTM instead, since CMD_BOOTM now depends on BOOTM Signed-off-by: Simon Glass --- boo