void-packages/srcpkgs/rock64-uboot/template

45 lines
1.3 KiB
Bash

# Template file for 'rock64-uboot'
pkgname=rock64-uboot
version=2022.07
revision=1
archs="aarch64*"
hostmakedepends="flex bc dtc python3 openssl-devel swig python3-devel"
makedepends="atf-rk3328-bl31"
short_desc="Das U-Boot for the Rock64 SBC"
maintainer="Cameron Nemo <cam@nohom.org>"
license="GPL-2.0-or-later, BSD-3-Clause"
homepage="https://www.denx.de/wiki/U-Boot/"
distfiles="https://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2"
checksum=92b08eb49c24da14c1adbf70a71ae8f37cc53eeb4230e859ad8b6733d13dcf5e
do_configure() {
make rock64-rk3328_defconfig
}
do_build() {
unset CFLAGS CXXFLAGS CPPFLAGS LDFLAGS
if [ "$CROSS_BUILD" ]; then
export CROSS_COMPILE="${XBPS_CROSS_TRIPLET}-"
fi
make ${makejobs} EXTRAVERSION="-${revision}" \
BL31="${XBPS_CROSS_BASE}/usr/lib/trusted-firmware-a/rk3328/bl31.elf"
}
do_install() {
vinstall idbloader.img 0644 usr/lib/rock64-uboot
vinstall u-boot.itb 0644 usr/lib/rock64-uboot
vlicense Licenses/Exceptions
vlicense Licenses/OFL.txt
vlicense Licenses/README
vlicense Licenses/bsd-2-clause.txt
vlicense Licenses/bsd-3-clause.txt
vlicense Licenses/eCos-2.0.txt
vlicense Licenses/gpl-2.0.txt
vlicense Licenses/ibm-pibs.txt
vlicense Licenses/isc.txt
vlicense Licenses/lgpl-2.0.txt
vlicense Licenses/lgpl-2.1.txt
vlicense Licenses/r8a779x_usb3.txt
vlicense Licenses/x11.txt
}