diff options
| author | Tianling Shen | 2025-10-11 09:04:08 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-11-15 18:56:27 +0000 |
| commit | 9aca1216d142d68e719e2161cd32cca6d9af1dca (patch) | |
| tree | cc43d869e9b9b7d03af50a016c8e549ace7c39b5 | |
| parent | decaf4cc7a96e7340ce4e642a5751590cd095792 (diff) | |
| download | openwrt-9aca1216d142d68e719e2161cd32cca6d9af1dca.tar.gz | |
uboot-rockchip: add Radxa E20C support
Add support for the Radxa E20C board.
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
Link: https://github.com/openwrt/openwrt/pull/20375
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/boot/uboot-rockchip/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/package/boot/uboot-rockchip/Makefile b/package/boot/uboot-rockchip/Makefile index addeeca309..78cfe52064 100644 --- a/package/boot/uboot-rockchip/Makefile +++ b/package/boot/uboot-rockchip/Makefile @@ -165,6 +165,23 @@ define U-Boot/rockpro64-rk3399 endef +# RK3528 boards + +define U-Boot/rk3528/Default + BUILD_SUBTARGET:=armv8 + DEPENDS:=+PACKAGE_u-boot-$(1):trusted-firmware-a-rk3528 + ATF:=rk3528_bl31_v1.20.elf + TPL:=rk3528_ddr_1056MHz_v1.11.bin +endef + +define U-Boot/radxa-e20c-rk3528 + $(U-Boot/rk3528/Default) + NAME:=E20C + BUILD_DEVICES:= \ + radxa_e20c +endef + + # RK3566 boards define U-Boot/rk3566/Default @@ -395,6 +412,7 @@ UBOOT_TARGETS := \ rock64-rk3328 \ rock-pi-e-rk3328 \ rock-pi-e-v3-rk3328 \ + radxa-e20c-rk3528 \ nanopi-r3s-rk3566 \ radxa-cm3-io-rk3566 \ radxa-zero-3-rk3566 \ |