diff mbox series

mx6sabre: Fix boot failure

Message ID 1613874345-17884-1-git-send-email-ye.li@nxp.com
State Accepted
Commit aacf04fb43408de30efb931eeadb1f76ec0ede0a
Delegated to: Stefano Babic
Headers show
Series mx6sabre: Fix boot failure | expand

Commit Message

Ye Li Feb. 21, 2021, 2:25 a.m. UTC
CONFIG_SPL_LEGACY_IMAGE_SUPPORT is necessary for mx6sabresd and
mx6sabreauto, because u-boot is packed as legacy image not FIT.
However, this config is not set when CONFIG_SPL_LOAD_FIT is enabled.
Must enable it explicitly, otherwise will fail to boot like below.

U-Boot SPL 2021.04-rc2 (Feb 20 2021 - 16:43:04 -0800)
Trying to boot from MMC1
mmc_load_image_raw_sector: mmc block read error
SPL: failed to boot from all boot devices

Signed-off-by: Ye Li <ye.li@nxp.com>
---
 configs/mx6sabreauto_defconfig | 1 +
 configs/mx6sabresd_defconfig   | 1 +
 2 files changed, 2 insertions(+)

Comments

Stefano Babic March 1, 2021, 11:55 a.m. UTC | #1
> CONFIG_SPL_LEGACY_IMAGE_SUPPORT is necessary for mx6sabresd and
> mx6sabreauto, because u-boot is packed as legacy image not FIT.
> However, this config is not set when CONFIG_SPL_LOAD_FIT is enabled.
> Must enable it explicitly, otherwise will fail to boot like below.
> U-Boot SPL 2021.04-rc2 (Feb 20 2021 - 16:43:04 -0800)
> Trying to boot from MMC1
> mmc_load_image_raw_sector: mmc block read error
> SPL: failed to boot from all boot devices
> Signed-off-by: Ye Li <ye.li@nxp.com>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic
diff mbox series

Patch

diff --git a/configs/mx6sabreauto_defconfig b/configs/mx6sabreauto_defconfig
index 4faf49e..9ed4064 100644
--- a/configs/mx6sabreauto_defconfig
+++ b/configs/mx6sabreauto_defconfig
@@ -20,6 +20,7 @@  CONFIG_NXP_BOARD_REVISION=y
 CONFIG_DEFAULT_DEVICE_TREE="imx6q-sabreauto"
 CONFIG_FIT=y
 CONFIG_SPL_FIT_PRINT=y
+CONFIG_SPL_LEGACY_IMAGE_SUPPORT=y
 CONFIG_SPL_LOAD_FIT=y
 # CONFIG_USE_SPL_FIT_GENERATOR is not set
 CONFIG_SUPPORT_RAW_INITRD=y
diff --git a/configs/mx6sabresd_defconfig b/configs/mx6sabresd_defconfig
index 0016fba..dd9ac93 100644
--- a/configs/mx6sabresd_defconfig
+++ b/configs/mx6sabresd_defconfig
@@ -20,6 +20,7 @@  CONFIG_DEFAULT_DEVICE_TREE="imx6q-sabresd"
 CONFIG_FIT=y
 CONFIG_SPL_FIT_PRINT=y
 CONFIG_SPL_LOAD_FIT=y
+CONFIG_SPL_LEGACY_IMAGE_SUPPORT=y
 # CONFIG_USE_SPL_FIT_GENERATOR is not set
 CONFIG_SUPPORT_RAW_INITRD=y
 CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/mach-imx/spl_sd.cfg"