Skip to content

Commit

Permalink
feat: add Pine64 SBC support
Browse files Browse the repository at this point in the history
This add support for the Pine64 and Pine64+ ARM64 SBCs.

Signed-off-by: Jorik Jonker <jorik@kippendief.biz>
  • Loading branch information
jonkerj authored and talos-bot committed Apr 28, 2021
1 parent b56f36b commit de9c582
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions u-boot/pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ steps:
ROCK64_RK3328_U_BOOT: rock64_rk3328_u-boot
RPI_ARM64_U_BOOT: rpi_4_u-boot
BANANAPI_M64_U_BOOT: bananapi_m64_u-boot
PINE64_U_BOOT: pine64_u-boot
ROCK_PI_4_RK3399_U_BOOT: rock-pi-4-rk3399_u-boot
prepare:
- |
Expand Down Expand Up @@ -74,6 +75,12 @@ steps:
tar -xjf u-boot.tar.bz2 --strip-components=1 -C ${BANANAPI_M64_U_BOOT}
cd ${BANANAPI_M64_U_BOOT}
make bananapi_m64_defconfig
# pine64
- |
mkdir ${PINE64_U_BOOT}
tar -xjf u-boot.tar.bz2 --strip-components=1 -C ${PINE64_U_BOOT}
cd ${PINE64_U_BOOT}
make pine64_plus_defconfig
# rock-pi-4-rk3399
- |
mkdir ${ROCK_PI_4_RK3399_U_BOOT}
Expand Down Expand Up @@ -117,6 +124,11 @@ steps:
export BL31=$(pwd)/${SUN50I_A64_ARM_TRUSTED_FIRMWARE}/build/sun50i_a64/release/bl31.bin
cd ${BANANAPI_M64_U_BOOT}
make -j $(nproc)
# pine64
- |
export BL31=$(pwd)/${SUN50I_A64_ARM_TRUSTED_FIRMWARE}/build/sun50i_a64/release/bl31.bin
cd ${PINE64_U_BOOT}
make -j $(nproc)
# rock-pi-4-rk3399
- |
export BL31=$(pwd)/${RK3399_ARM_TRUSTED_FIRMWARE}/build/rk3399/release/bl31/bl31.elf
Expand All @@ -141,6 +153,10 @@ steps:
- |
mkdir -p /rootfs/bananapi_m64
cp -v ${BANANAPI_M64_U_BOOT}/u-boot-sunxi-with-spl.bin /rootfs/bananapi_m64
# pine64
- |
mkdir -p /rootfs/pine64
cp -v ${PINE64_U_BOOT}/u-boot-sunxi-with-spl.bin /rootfs/pine64
# rock-pi-4-rk3399
- |
mkdir -p /rootfs/rockpi_4
Expand Down

0 comments on commit de9c582

Please sign in to comment.