diff options
author | Fabio Estevam <fabio.estevam@nxp.com> | 2016-04-20 22:48:13 -0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-05-02 21:04:36 -0400 |
commit | 58abb988ce24525474f0d515d2a36c1b3acf893f (patch) | |
tree | b79ab61de6c93b5a49334c7a3c6be67b0b5306e4 | |
parent | fd2d1e0d47d585eac936a7239eb2bdad7e07a8cc (diff) | |
download | u-boot-imx-58abb988ce24525474f0d515d2a36c1b3acf893f.zip u-boot-imx-58abb988ce24525474f0d515d2a36c1b3acf893f.tar.gz u-boot-imx-58abb988ce24525474f0d515d2a36c1b3acf893f.tar.bz2 |
mx6ul_evk: Remove CONFIG_SUPPORT_EMMC_BOOT
mx6ul_evk does not come with a eMMC populated, so we should not
define CONFIG_SUPPORT_EMMC_BOOT as it causes SPL to not be able
to boot some brands of SD cards, such as SanDisk microSD HC - 8GB:
U-Boot SPL 2016.05-rc1-28384-g108f841 (Apr 19 2016 - 11:19:11)
Trying to boot from MMC1
spl: mmc block read error
SPL: failed to boot from all boot devices
### ERROR ### Please RESET the board ###
When CONFIG_SUPPORT_EMMC_BOOT is defined spl_boot_mode() returns
MMCSD_MODE_EMMCBOOT, so remove this option to have a reliable boot
via SD card.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
-rw-r--r-- | include/configs/mx6ul_14x14_evk.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/configs/mx6ul_14x14_evk.h b/include/configs/mx6ul_14x14_evk.h index 15976f7..b2ba773 100644 --- a/include/configs/mx6ul_14x14_evk.h +++ b/include/configs/mx6ul_14x14_evk.h @@ -45,7 +45,6 @@ #define CONFIG_SYS_FSL_USDHC_NUM 2 #endif -#define CONFIG_SUPPORT_EMMC_BOOT /* eMMC specific */ #endif /* I2C configs */ |