diff options
author | Simon Glass <sjg@chromium.org> | 2023-03-24 16:58:12 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-27 11:16:04 -0400 |
commit | febb9852613708c768c1b40807ce502504d79002 (patch) | |
tree | fcdfa11983ba03f324298a8fc16b69ecc2fc86ba | |
parent | c9d4abee6d88b6dd967f84d199a2fc41ef82b232 (diff) | |
download | u-boot-febb9852613708c768c1b40807ce502504d79002.zip u-boot-febb9852613708c768c1b40807ce502504d79002.tar.gz u-boot-febb9852613708c768c1b40807ce502504d79002.tar.bz2 |
lmb: Enable LMB if SYS_BOOT_RAMDISK_HIGH
Ramdisk relocation requires LMB, so enable it automatically to avoid
build errors.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | boot/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/boot/Kconfig b/boot/Kconfig index 170ab63..8fa3181 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -814,6 +814,7 @@ config SYS_BOOT_RAMDISK_HIGH depends on CMD_BOOTM || CMD_BOOTI || CMD_BOOTZ depends on !(NIOS2 || SANDBOX || SH || XTENSA) def_bool y + select LMB help Enable initrd_high functionality. If defined then the initrd_high feature is enabled and the boot* ramdisk subcommand is enabled. |