sysutils: Add u-boot for Pine64 Quartz-A and -B board

Sponsored by:	Beckhoff Automation GmbH & Co. KG
This commit is contained in:
Emmanuel Vadot 2024-09-24 13:14:38 +02:00
parent c115493e8a
commit 92d17fc29a
5 changed files with 28 additions and 0 deletions

View file

@ -1552,6 +1552,8 @@
SUBDIR += u-boot-qemu-arm SUBDIR += u-boot-qemu-arm
SUBDIR += u-boot-qemu-arm64 SUBDIR += u-boot-qemu-arm64
SUBDIR += u-boot-qemu-riscv64 SUBDIR += u-boot-qemu-riscv64
SUBDIR += u-boot-quartz64-a
SUBDIR += u-boot-quartz64-b
SUBDIR += u-boot-riotboard SUBDIR += u-boot-riotboard
SUBDIR += u-boot-rock-pi-4 SUBDIR += u-boot-rock-pi-4
SUBDIR += u-boot-rock64 SUBDIR += u-boot-rock64

View file

@ -0,0 +1,7 @@
MASTERDIR= ${.CURDIR}/../u-boot-master
MODEL= quartz64-a
BOARD_CONFIG= quartz64-a-rk3566_defconfig
FAMILY= rk356X
.include "${MASTERDIR}/Makefile"

View file

@ -0,0 +1,6 @@
U-Boot loader and related files for the Pine64 Quartz-A
To install this bootloader on an sdcard just do:
dd if=/usr/local/share/u-boot/u-boot-quartz-a/idbloader.img of=/path/to/sdcarddevice seek=64 bs=512 conv=sync
dd if=/usr/local/share/u-boot/u-boot-quartz-a/u-boot.itb of=/path/to/sdcarddevice seek=16384 bs=512 conv=sync

View file

@ -0,0 +1,7 @@
MASTERDIR= ${.CURDIR}/../u-boot-master
MODEL= quartz64-b
BOARD_CONFIG= quartz64-b-rk3566_defconfig
FAMILY= rk356X
.include "${MASTERDIR}/Makefile"

View file

@ -0,0 +1,6 @@
U-Boot loader and related files for the Pine64 Quartz-B
To install this bootloader on an sdcard just do:
dd if=/usr/local/share/u-boot/u-boot-quartz-b/idbloader.img of=/path/to/sdcarddevice seek=64 bs=512 conv=sync
dd if=/usr/local/share/u-boot/u-boot-quartz-b/u-boot.itb of=/path/to/sdcarddevice seek=16384 bs=512 conv=sync