PKGBUILDs/alarm/uboot-pandaboard/PKGBUILD

45 lines
940 B
Bash
Raw Normal View History

2013-07-19 19:54:57 +00:00
# U-Boot: Pandaboard and Pandaboard ES
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
2013-07-19 20:14:45 +00:00
buildarch=4
2013-07-19 19:54:57 +00:00
pkgname=uboot-pandaboard
2016-01-18 23:26:53 +00:00
pkgver=2016.01
pkgrel=1
2013-07-19 19:54:57 +00:00
pkgdesc="U-Boot for Pandaboard and Pandaboard ES"
arch=('armv7h')
url="http://git.denx.de/u-boot.git/"
2014-11-23 07:04:09 +00:00
makedepends=('git' 'bc')
2013-07-19 19:54:57 +00:00
license=('GPL')
2014-11-23 07:04:09 +00:00
install=${pkgname}.install
backup=('boot/uEnv.txt')
2014-05-17 20:00:54 +00:00
source=("ftp://ftp.denx.de/pub/u-boot/u-boot-${pkgver}.tar.bz2"
2014-11-23 07:04:09 +00:00
'0001-arch-linux-arm-modifications.patch'
2013-07-19 19:54:57 +00:00
'uEnv.txt')
2016-01-18 23:26:53 +00:00
md5sums=('7d4f65fd43d4d706f5c5650e020d899d'
'12c54a3f6b540658f9854ac38878d34f'
2014-11-23 07:04:09 +00:00
'86004660f2912861a040e335c9c0e85b')
2013-07-19 19:54:57 +00:00
prepare() {
2014-05-17 20:00:54 +00:00
cd u-boot-${pkgver}
2014-01-08 03:05:06 +00:00
2014-11-23 07:04:09 +00:00
git apply ../0001-arch-linux-arm-modifications.patch
2013-07-19 19:54:57 +00:00
}
build() {
2014-05-17 20:00:54 +00:00
cd u-boot-${pkgver}
2014-01-08 03:05:06 +00:00
unset LDFLAGS
2013-07-19 19:54:57 +00:00
make distclean
make omap4_panda_config
make
}
package() {
2014-05-17 20:00:54 +00:00
cd u-boot-${pkgver}
2013-07-19 19:54:57 +00:00
mkdir -p "${pkgdir}"/boot
cp MLO u-boot.img "${srcdir}"/uEnv.txt "${pkgdir}"/boot
}