diff options
Diffstat (limited to 'libre/uboot-beagleboard-linux-libre-pck/PKGBUILD')
-rw-r--r-- | libre/uboot-beagleboard-linux-libre-pck/PKGBUILD | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/libre/uboot-beagleboard-linux-libre-pck/PKGBUILD b/libre/uboot-beagleboard-linux-libre-pck/PKGBUILD new file mode 100644 index 000000000..d5bfa4a10 --- /dev/null +++ b/libre/uboot-beagleboard-linux-libre-pck/PKGBUILD @@ -0,0 +1,44 @@ +# U-Boot: BeagleBoard and BeagleBoard-xM +# Maintainer (Arch): Kevin Mihelich <kevin@archlinuxarm.org> +# Contributor: André Silva <emulatorman@parabola.nu> +# Contributor: Isaac David <isacdaavid@isacdaavid.info> + +buildarch=4 + +_pkgname=linux-libre-pck +pkgname=uboot-beagleboard-${_pkgname} +pkgver=2015.04 +pkgrel=1 +pkgdesc="U-Boot for BeagleBoard and BeagleBoard-xM (built for the linux-libre-pck kernel package)" +arch=('armv7h') +url="http://git.denx.de/u-boot.git/" +license=('GPL') +depends=('linux-libre-pck') +makedepends=('bc') +source=("ftp://ftp.denx.de/pub/u-boot/u-boot-${pkgver}.tar.bz2" + '0001-parabola-arm-modifications.patch' + 'uEnv.txt') +md5sums=('570bdc2c47270c2a98ca60ff6c5c74cd' + '4d4fd0e33ddd334a79e1e85c5b418b35' + 'd41d8cd98f00b204e9800998ecf8427e') + +prepare() { + cd u-boot-${pkgver} + patch -Np1 -i ../0001-parabola-arm-modifications.patch +} + +build() { + cd u-boot-${pkgver} + + unset LDFLAGS CFLAGS CXXFLAGS + + make distclean + make omap3_beagle_config + make +} + +package() { + cd u-boot-${pkgver} + mkdir -p "${pkgdir}/boot/${pkgname}" + cp MLO u-boot.img "${srcdir}"/uEnv.txt "${pkgdir}/boot/${pkgname}" +} |