PKGBUILDs/alarm/uboot-boundary/PKGBUILD
2014-05-03 16:32:42 +00:00

45 lines
1.1 KiB
Bash

# U-Boot: Boundary Devices Nitrogen6X/Sabre Lite
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
buildarch=4
pkgname=uboot-boundary
pkgver=2014.04
pkgrel=1
arch=('armv7h')
pkgdesc="U-Boot for Nitrogen6X/Sabre Lite"
url="https://github.com/boundarydevices/u-boot-imx6/tree/production"
license=('GPL')
makedepends=('uboot-mkimage')
backup=('6x_bootscript')
_commit=64683040a54eeba258ede1a7f06e1348e9130653
source=("https://github.com/boundarydevices/u-boot-imx6/archive/${_commit}.tar.gz"
'6x_bootscript'
'alarm.patch')
md5sums=('dfdcf985d228b853606b91cb193916d4'
'4c78341ff205c4e99f428385869c22e0'
'9c8304b11ad58a9b9604d89d076856dd')
prepare() {
cd u-boot-imx6-${_commit}
patch -p1 -i "${srcdir}"/alarm.patch
}
build() {
cd u-boot-imx6-${_commit}
unset CFLAGS
unset CXXFLAGS
make distclean
make nitrogen6q_config
make
}
package() {
cd u-boot-imx6-${_commit}
mkdir -p "${pkgdir}"/boot
cp u-boot.imx "${pkgdir}"/boot
mkimage -A arm -O linux -T script -C none -a 0 -e 0 -n "boot script" -d ../6x_bootscript ${pkgdir}/6x_bootscript
}