summaryrefslogtreecommitdiffstats
path: root/images
diff options
context:
space:
mode:
authorMichael Riesch <michael.riesch@wolfvision.net>2022-05-31 18:26:24 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2022-06-08 15:50:15 +0200
commit439d2028a0e3f095e85d779892876efff5c7c9f1 (patch)
tree741b4b0510c8f85077cdc57f8a79e8a98633cdf9 /images
parente54923b76e345080b73f3ae7f508657e5c63a9eb (diff)
downloadbarebox-439d2028a0e3f095e85d779892876efff5c7c9f1.tar.gz
barebox-439d2028a0e3f095e85d779892876efff5c7c9f1.tar.xz
arm: rockchip: add support for the radxa rock3 board
Add basic support for the Radxa ROCK3 Model A board (featuring the Rockchip RK3568 SoC). Signed-off-by: Michael Riesch <michael.riesch@wolfvision.net> Link: https://lore.barebox.org/20220531162624.245664-4-michael.riesch@wolfvision.net Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'images')
-rw-r--r--images/Makefile.rockchip7
1 files changed, 7 insertions, 0 deletions
diff --git a/images/Makefile.rockchip b/images/Makefile.rockchip
index cdc7772c2e..33c76caf79 100644
--- a/images/Makefile.rockchip
+++ b/images/Makefile.rockchip
@@ -20,6 +20,9 @@ image-$(CONFIG_MACH_RK3568_BPI_R2PRO) += barebox-rk3568-bpi-r2pro.img
pblb-$(CONFIG_MACH_PINE64_QUARTZ64) += start_quartz64a
image-$(CONFIG_MACH_PINE64_QUARTZ64) += barebox-quartz64a.img
+pblb-$(CONFIG_MACH_RADXA_ROCK3) += start_rock3a
+image-$(CONFIG_MACH_RADXA_ROCK3) += barebox-rock3a.img
+
quiet_cmd_rkimg_image = RK-IMG $@
cmd_rkimg_image = $(objtree)/scripts/rkimage -o $@ $(word 2,$^) $(word 1,$^)
@@ -34,3 +37,7 @@ $(obj)/barebox-rk3568-bpi-r2pro.img: $(obj)/start_rk3568_bpi_r2pro.pblb \
$(obj)/barebox-quartz64a.img: $(obj)/start_quartz64a.pblb \
$(board)/pine64-quartz64/sdram-init.bin
$(call if_changed,rkimg_image)
+
+$(obj)/barebox-rock3a.img: $(obj)/start_rock3a.pblb \
+ $(board)/radxa-rock3/sdram-init.bin
+ $(call if_changed,rkimg_image)