mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
Correct SPL use of CMD_BOOTI
This converts 1 usage of this option to the non-SPL form, since there is no SPL_CMD_BOOTI defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
71e3e21507
commit
ef65aa3572
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ static int bootm_find_os(struct cmd_tbl *cmdtp, int flag, int argc,
|
|||
}
|
||||
|
||||
if (images.os.type == IH_TYPE_KERNEL_NOLOAD) {
|
||||
if (CONFIG_IS_ENABLED(CMD_BOOTI) &&
|
||||
if (IS_ENABLED(CONFIG_CMD_BOOTI) &&
|
||||
images.os.arch == IH_ARCH_ARM64) {
|
||||
ulong image_addr;
|
||||
ulong image_size;
|
||||
|
|
Loading…
Reference in a new issue