diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-09-30 20:19:51 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-09-30 20:19:51 -0300 |
commit | 7d085c4da75b92b70970ba273f9358aa8e1f4f9b (patch) | |
tree | d87643553737d516f5443c58221183e396723ce2 /libre/uboot-beaglebone-linux-libre/PKGBUILD | |
parent | 26ac02527f3475a05770da09872259d9ea6eca21 (diff) |
uboot-beaglebone-linux-libre: add new package for [libre]
Diffstat (limited to 'libre/uboot-beaglebone-linux-libre/PKGBUILD')
-rw-r--r-- | libre/uboot-beaglebone-linux-libre/PKGBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/libre/uboot-beaglebone-linux-libre/PKGBUILD b/libre/uboot-beaglebone-linux-libre/PKGBUILD new file mode 100644 index 000000000..49c791d07 --- /dev/null +++ b/libre/uboot-beaglebone-linux-libre/PKGBUILD @@ -0,0 +1,45 @@ +# U-Boot: Beaglebone and Beaglebone Black +# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org> +# Maintainer: André Silva <emulatorman@parabola.nu> + +buildarch=4 + +_pkgname=linux-libre +pkgname=uboot-beaglebone-${_pkgname} +pkgver=2015.04 +pkgrel=1 +pkgdesc="U-Boot for Beaglebone and Beaglebone Black (built for the linux-libre kernel package)" +arch=('armv7h') +url="http://git.denx.de/u-boot.git/" +depends=('linux-libre') +makedepends=('bc') +replaces=('uboot-beaglebone') +license=('GPL') +install=${pkgname}.install +source=("ftp://ftp.denx.de/pub/u-boot/u-boot-${pkgver}.tar.bz2" + '0001-parabola-arm-modifications.patch' + 'uEnv.txt') +md5sums=('570bdc2c47270c2a98ca60ff6c5c74cd' + '866dc9001d2d0d3e6b3d3b3c7ffced53' + 'ccb79775b81654e16fca18825c7f2506') + +prepare() { + cd u-boot-${pkgver} + patch -Np1 -i ../0001-parabola-arm-modifications.patch +} + +build() { + cd u-boot-${pkgver} + + unset CFLAGS CXXFLAGS LDFLAGS + + make distclean + make am335x_evm_config + make +} + +package() { + cd u-boot-${pkgver} + mkdir -p "${pkgdir}/boot/${pkgname}" + cp MLO u-boot.img "${srcdir}"/uEnv.txt "${pkgdir}/boot/${pkgname}" +} |