# U-Boot: BeagleBoard and BeagleBoard-xM # Maintainer: Kevin Mihelich buildarch=4 pkgname=uboot-beagleboard pkgver=2016.09 pkgrel=1 pkgdesc="U-Boot for BeagleBoard and BeagleBoard-xM" arch=('armv7h') url="http://git.denx.de/u-boot.git/" license=('GPL') makedepends=('git' 'bc') backup=('boot/uEnv.txt') source=("ftp://ftp.denx.de/pub/u-boot/u-boot-${pkgver/rc/-rc}.tar.bz2" '0001-arch-linux-arm-modifications.patch' 'uEnv.txt') md5sums=('2e69dda70eb28f8042d2f9fbeb1feaa1' '0bd6e9db86c801ee18f2a6c26af5eb6c' 'd41d8cd98f00b204e9800998ecf8427e') prepare() { cd u-boot-${pkgver/rc/-rc} git apply ../0001-arch-linux-arm-modifications.patch } build() { cd u-boot-${pkgver/rc/-rc} unset LDFLAGS CFLAGS CXXFLAGS make distclean make omap3_beagle_config make EXTRAVERSION=-${pkgrel} } package() { cd u-boot-${pkgver/rc/-rc} mkdir -p "${pkgdir}"/boot cp MLO u-boot.img "${srcdir}"/uEnv.txt "${pkgdir}"/boot }