mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 00:32:04 +02:00
pbp: Prioritize booting from SD card (it's actually index 1, eMMC is 0)
Not sure why... Signed-off-by: Ondrej Jirman <megous@megous.com>
This commit is contained in:
@@ -17,8 +17,8 @@
|
||||
/* First try to boot from SD (index 0), then eMMC (index 1) */
|
||||
#if CONFIG_IS_ENABLED(CMD_MMC)
|
||||
#define BOOT_TARGET_MMC(func) \
|
||||
func(MMC, mmc, 0) \
|
||||
func(MMC, mmc, 1)
|
||||
func(MMC, mmc, 1) \
|
||||
func(MMC, mmc, 0)
|
||||
#else
|
||||
#define BOOT_TARGET_MMC(func)
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user