change bootorder in u-boot for z28pro

This commit is contained in:
Staars 2018-07-19 20:41:55 +00:00
parent fe8843e0bc
commit 8bd955f394

View file

@ -0,0 +1,15 @@
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h
index 1b00ef4..335b214 100644
--- a/include/configs/rockchip-common.h
+++ b/include/configs/rockchip-common.h
@@ -14,9 +14,9 @@
/* First try to boot from SD (index 0), then eMMC (index 1 */
#ifdef CONFIG_CMD_USB
#define BOOT_TARGET_DEVICES(func) \
- func(MMC, mmc, 0) \
func(MMC, mmc, 1) \
func(USB, usb, 0) \
+ func(MMC, mmc, 0) \
func(PXE, pxe, na) \
func(DHCP, dchp, na)
#else