mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-17 12:21:23 +00:00
Prioritize booting from SD for OrangePi 4 (#1822)
This commit is contained in:
parent
b31ebbea77
commit
ac6b75115f
1 changed files with 15 additions and 0 deletions
|
@ -0,0 +1,15 @@
|
|||
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h
|
||||
index 68e1105a..906c22ed 100644
|
||||
--- a/include/configs/rockchip-common.h
|
||||
+++ b/include/configs/rockchip-common.h
|
||||
@@ -14,8 +14,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
|
Loading…
Add table
Reference in a new issue