diff options
author | Antonio Flores <antflores627@gmail.com> | 2023-07-08 13:26:31 -0400 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2023-08-27 19:20:11 +0200 |
commit | 0405e11a7125cce2454f36035a9a772e25fc5258 (patch) | |
tree | a8903bb5302b5c6ce5daeaec1d9a25753c5ba4ba /package/boot/uboot-rockchip | |
parent | a4eb1ea3319296d99d36be8c4d786f4e3ee6acb9 (diff) |
uboot-rockchip: add support for PINE64 ROCK64
Add uboot support for PINE64 ROCK64, rockchip rk3328 board.
Signed-off-by: Antonio Flores <antflores627@gmail.com>
Diffstat (limited to 'package/boot/uboot-rockchip')
-rw-r--r-- | package/boot/uboot-rockchip/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/package/boot/uboot-rockchip/Makefile b/package/boot/uboot-rockchip/Makefile index 2d44c218f2..f424abbd44 100644 --- a/package/boot/uboot-rockchip/Makefile +++ b/package/boot/uboot-rockchip/Makefile @@ -66,6 +66,13 @@ define U-Boot/roc-cc-rk3328 firefly_roc-rk3328-cc endef +define U-Boot/rock64-rk3328 + $(U-Boot/rk3328/Default) + NAME:=Rock64 + BUILD_DEVICES:= \ + pine64_rock64 +endef + # RK3399 boards define U-Boot/rk3399/Default @@ -111,7 +118,8 @@ UBOOT_TARGETS := \ nanopi-r2s-rk3328 \ orangepi-r1-plus-rk3328 \ orangepi-r1-plus-lts-rk3328 \ - roc-cc-rk3328 + roc-cc-rk3328 \ + rock64-rk3328 UBOOT_CONFIGURE_VARS += USE_PRIVATE_LIBGCC=yes |