Integrate u-boot-seco-imx/seco_lf_v2021.04_santino_boot0
Commit: clea-os/bsp/nxp/u-boot-seco-imx@ceef5840
[iMX6][SPL] Improve definition of CONFIG_SUPPORT_EMMC_BOOT to select boot mode
The definition of CONFIG_SUPPORT_EMMC_BOOT
in mx6_common.h
has been
updated adding the value 1 to it. Mostly, this config is processed
only checking if it's defined and for these cases the former
definition was enough.
For iMX6, in arch/arm/mach-imx/spl.c
, the config is checked with
IS_ENABLED()
and it needs to have a value in order to pass the check.
This caused the boot mode always to MMCSD_MODE_RAW
with the former
definition.
Signed-off-by: Nicola Sparnacci nicola.sparnacci@seco.com
--
Commit: clea-os/bsp/nxp/u-boot-seco-imx@272027ac
[SANTINO][SPL][DEFCONFIG] Enable boot from mmcblk0boot0
Override CONFIG_SUPPORT_EMMC_BOOT
from mx6_common.h
to let the
proper boot mode being selected. Finally, configured Santino's
defconfig to boot from mmcblk0boot0.
With this change, many compilation warnings occur due to the
redefinition of CONFIG_SUPPORT_EMMC_BOOT
.
Signed-off-by: Nicola Sparnacci nicola.sparnacci@seco.com