summaryrefslogtreecommitdiffstats
path: root/images
diff options
context:
space:
mode:
authorMichael Riesch <michael.riesch@wolfvision.net>2021-11-10 11:45:30 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2021-11-17 08:45:59 +0100
commit8d14f8e898b4cd4d9ff76b6afcbaf25bf37aa1e7 (patch)
tree3105ddec3b876d92b97b59157598581fe581cd63 /images
parent3f2f5980d517b6a71ffe54e615bd3a4b58b1c295 (diff)
downloadbarebox-8d14f8e898b4cd4d9ff76b6afcbaf25bf37aa1e7.tar.gz
barebox-8d14f8e898b4cd4d9ff76b6afcbaf25bf37aa1e7.tar.xz
arm: rockchip: add support for the quartz64 board
The Pine64 Quartz64 board features the Rockchip RK3566, a reduced but largely identical version of the RK3568. Two models (A and B) of the Quartz64 board are envisaged, where this patch targets the already available model A. Signed-off-by: Michael Riesch <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 e64fccec6b..19980914b2 100644
--- a/images/Makefile.rockchip
+++ b/images/Makefile.rockchip
@@ -13,9 +13,16 @@ image-$(CONFIG_MACH_PHYTEC_SOM_RK3288) += barebox-rk3288-phycore-som.img
pblb-$(CONFIG_MACH_RK3568_EVB) += start_rk3568_evb
image-$(CONFIG_MACH_RK3568_EVB) += barebox-rk3568-evb.img
+pblb-$(CONFIG_MACH_PINE64_QUARTZ64) += start_quartz64a
+image-$(CONFIG_MACH_PINE64_QUARTZ64) += barebox-quartz64a.img
+
quiet_cmd_rkimg_image = RK-IMG $@
cmd_rkimg_image = $(objtree)/scripts/rkimage -o $@ $(word 2,$^) $(word 1,$^)
$(obj)/barebox-rk3568-evb.img: $(obj)/start_rk3568_evb.pblb \
$(board)/rockchip-rk3568-evb/sdram-init.bin
$(call if_changed,rkimg_image)
+
+$(obj)/barebox-quartz64a.img: $(obj)/start_quartz64a.pblb \
+ $(board)/pine64-quartz64/sdram-init.bin
+ $(call if_changed,rkimg_image)