forked from armbian/build
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
radxa-zero3: fix U-Boot dtb choice for Armbian kernel builds
Signed-off-by: MichaIng <micha@dietpi.com>
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
patch/u-boot/u-boot-radxa-latest/board_radxa-zero3-fix-dtb-choice.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
diff --git a/board/rockchip/evb_rk3568/evb_rk3568.c b/board/rockchip/evb_rk3568/evb_rk3568.c | ||
index 43b8de4..72a419b 100644 | ||
--- a/board/rockchip/evb_rk3568/evb_rk3568.c | ||
+++ b/board/rockchip/evb_rk3568/evb_rk3568.c | ||
@@ -24,10 +24,10 @@ struct variant_def { | ||
|
||
#ifdef CONFIG_ID_EEPROM | ||
static struct variant_def variants[] = { | ||
- {"radxa,zero3", 230, 270, 0, -1, "rockchip/rk3566-radxa-zero-3w-aic8800ds2.dtb"}, | ||
- {"radxa,zero3", 400, 450, 0, -1, "rockchip/rk3566-radxa-zero-3e.dtb"}, | ||
- {"radxa,zero3", 451, 510, 0, -1, "rockchip/rk3566-radxa-zero-3w-ap6212.dtb"}, | ||
- {"radxa,rock-3c", 300, 360, 0, -1, "rockchip/rk3566-rock-3c-aic8800ds2.dtb"}, | ||
+ {"radxa,zero3", 230, 270, 0, -1, "rockchip/rk3566-radxa-zero-3.dtb"}, | ||
+ {"radxa,zero3", 400, 450, 0, -1, "rockchip/rk3566-radxa-zero-3.dtb"}, | ||
+ {"radxa,zero3", 451, 510, 0, -1, "rockchip/rk3566-radxa-zero-3-ap6212.dtb"}, | ||
+ {"radxa,rock-3c", 300, 360, 0, -1, "rockchip/rk3566-rock-3c.dtb"}, | ||
}; | ||
|
||
static void set_fdtfile(void) |