vp-build/srcpkgs/beaglebone-uboot/template

31 lines
805 B
Bash

# Template file for 'beaglebone-uboot'
pkgname=beaglebone-uboot
version=2014.07
revision=2
wrksrc="u-boot-${version}"
hostmakedepends="bc"
short_desc="Beaglebone and BeagleBone Black U-Boot loader"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="GPL-2"
homepage="http://www.denx.de/wiki/U-Boot/WebHome"
distfiles="ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2"
checksum=b4f83b8db325c21671a997198ec3a373e2e00dde2fcf17be9b9afd7cfd727f56
only_for_archs="armv7l armv7l-musl"
do_build() {
unset CFLAGS CXXFLAGS LDFLAGS
if [ "$CROSS_BUILD" ]; then
make CROSS_COMPILE=${XBPS_CROSS_TRIPLET}- am335x_evm_config
make CROSS_COMPILE=${XBPS_CROSS_TRIPLET}- ${makejobs}
else
make am335x_evm_config
make ${makejobs}
fi
}
do_install() {
vinstall MLO 644 boot
vinstall u-boot.img 644 boot
}