diff options
author | Simon Glass | 2023-12-14 21:19:00 -0700 |
---|---|---|
committer | Tom Rini | 2024-04-10 17:04:25 -0600 |
commit | 6e558e34e0d8b8a0fc5704e2372643f8fcab0091 (patch) | |
tree | de37f542302805f6a2da27bf8e3a3bce54352945 /configs/xilinx_versal_mini_ospi_defconfig | |
parent | 52b3c47d7cc993125d22315115d514ca6e3d77d8 (diff) |
bootm: Add a Kconfig option for bootm functionality
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 <sjg@chromium.org>
Diffstat (limited to 'configs/xilinx_versal_mini_ospi_defconfig')
-rw-r--r-- | configs/xilinx_versal_mini_ospi_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/xilinx_versal_mini_ospi_defconfig b/configs/xilinx_versal_mini_ospi_defconfig index 96be5b92b90..f91431e9b7b 100644 --- a/configs/xilinx_versal_mini_ospi_defconfig +++ b/configs/xilinx_versal_mini_ospi_defconfig @@ -18,6 +18,7 @@ CONFIG_VERSAL_NO_DDR=y CONFIG_SYS_LOAD_ADDR=0x8000000 # CONFIG_EXPERT is not set CONFIG_REMAKE_ELF=y +# CONFIG_BOOTM is not set # CONFIG_AUTOBOOT is not set CONFIG_SYS_CONSOLE_INFO_QUIET=y # CONFIG_DISPLAY_CPUINFO is not set @@ -30,7 +31,6 @@ CONFIG_SYS_PROMPT="Versal> " # CONFIG_CMD_BDI is not set # CONFIG_CMD_CONSOLE is not set # CONFIG_CMD_BOOTD is not set -# CONFIG_CMD_BOOTM is not set # CONFIG_CMD_BOOTI is not set # CONFIG_CMD_ELF is not set # CONFIG_CMD_FDT is not set |