29 lines
831 B
Diff
29 lines
831 B
Diff
|
From f97401137daa1cb75532c373bbcb5011f1e03585 Mon Sep 17 00:00:00 2001
|
||
|
From: Dan Johansen <strit@manjaro.org>
|
||
|
Date: Sun, 10 Oct 2021 20:19:02 +0200
|
||
|
Subject: [PATCH] Correct boot order to be USB -> SD -> eMMC
|
||
|
|
||
|
Signed-off-by: Dan Johansen <strit@manjaro.org>
|
||
|
---
|
||
|
include/configs/rockchip-common.h | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h
|
||
|
index ba7061a287..5dc92373b2 100644
|
||
|
--- a/include/configs/rockchip-common.h
|
||
|
+++ b/include/configs/rockchip-common.h
|
||
|
@@ -55,9 +55,9 @@
|
||
|
|
||
|
#ifdef CONFIG_ROCKCHIP_RK3399
|
||
|
#define BOOT_TARGET_DEVICES(func) \
|
||
|
+ BOOT_TARGET_USB(func) \
|
||
|
BOOT_TARGET_MMC(func) \
|
||
|
BOOT_TARGET_NVME(func) \
|
||
|
- BOOT_TARGET_USB(func) \
|
||
|
BOOT_TARGET_PXE(func) \
|
||
|
BOOT_TARGET_DHCP(func) \
|
||
|
BOOT_TARGET_SF(func)
|
||
|
--
|
||
|
2.33.0
|
||
|
|