diff options
author | Adam Ford <aford173@gmail.com> | 2021-03-13 09:46:32 -0600 |
---|---|---|
committer | Lokesh Vutla <lokeshvutla@ti.com> | 2021-04-12 08:38:49 +0530 |
commit | 099c9a47c9dec8fde66c253fd8e1eca6c1e33a9e (patch) | |
tree | a8d2d124c70c25a473e138b23a2c5722de611bb3 /configs/omap35_logic_somlv_defconfig | |
parent | b46dd116ce03e235f2a7d4843c6278e1da44b5e1 (diff) | |
download | u-boot-099c9a47c9dec8fde66c253fd8e1eca6c1e33a9e.tar.gz |
configs: omap35_logic_somlv: Fix MMC booting
A previous patch had removed the GPIO nodes from being built
into the SPL Device tree, but CONFIG_SPL_GPIO_SUPPORT remained
which makes the MMC card detect fail and the board does not boot.
Fix this by disabling CONFIG_SPL_GPIO_SUPPORT.
Fixes: 6f1efe81aa84 ("configs: omap3/35_logic and omap3/35_logic_somlv: Reduce SPL size")
Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'configs/omap35_logic_somlv_defconfig')
-rw-r--r-- | configs/omap35_logic_somlv_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/omap35_logic_somlv_defconfig b/configs/omap35_logic_somlv_defconfig index e6655c7828..a8eab408f6 100644 --- a/configs/omap35_logic_somlv_defconfig +++ b/configs/omap35_logic_somlv_defconfig @@ -4,6 +4,7 @@ CONFIG_ARM=y CONFIG_ARCH_OMAP2PLUS=y CONFIG_SYS_TEXT_BASE=0x80100000 CONFIG_TI_COMMON_CMD_OPTIONS=y +# CONFIG_SPL_GPIO_SUPPORT is not set CONFIG_SYS_MALLOC_F_LEN=0x4000 CONFIG_NR_DRAM_BANKS=2 CONFIG_SPL_TEXT_BASE=0x40200000 |