diff options
| author | Peter Robinson <[email protected]> | 2021-12-21 12:32:47 +0000 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-01-07 09:30:44 -0500 |
| commit | 2bbe1ba0c712c3eb1670952efa3351f501959eb3 (patch) | |
| tree | f48f935ae34326aac2fa59716b2ce7df899d0a04 /include | |
| parent | 4be9947edf68650db0c68d7c212f98a7cd1dfbdd (diff) | |
udoo_neo: Fixes for booting from the mSD card
This fixes booting from the mSD card from both SPL and when
using it for the OS booting. It also cleans up a few mmc
booting bits that are no longer needed.
Signed-off-by: Peter Robinson <[email protected]>
Reviewed-by: Fabio Estevam <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/udoo_neo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/udoo_neo.h b/include/configs/udoo_neo.h index b06abc9286b..e2b432e1c48 100644 --- a/include/configs/udoo_neo.h +++ b/include/configs/udoo_neo.h @@ -29,7 +29,7 @@ "fdt_addr=0x83000000\0" \ "fdt_addr_r=0x83000000\0" \ "ip_dyn=yes\0" \ - "mmcdev=0\0" \ + "mmcdev=1\0" \ "mmcrootfstype=ext4\0" \ "findfdt="\ "if test $board_name = BASIC; then " \ @@ -49,7 +49,7 @@ BOOTENV #define BOOT_TARGET_DEVICES(func) \ - func(MMC, mmc, 0) \ + func(MMC, mmc, 1) \ func(DHCP, dhcp, na) #include <config_distro_bootcmd.h> |
