summaryrefslogtreecommitdiff
path: root/libre/uboot-beaglebone-linux-libre-pck/PKGBUILD
diff options
context:
space:
mode:
authorIsaac David <isacdaavid@isacdaavid.info>2015-10-09 13:41:54 -0500
committerIsaac David <isacdaavid@isacdaavid.info>2015-10-09 13:41:54 -0500
commit661b250a8a6fa8a7dbb4ece0125f0de6e3ea529c (patch)
treeb43e2747e186c3c2dfadeb9eac658e32b26b12cc /libre/uboot-beaglebone-linux-libre-pck/PKGBUILD
parent490283446495f51256787e45d2393551e2bcf443 (diff)
add packages uboot-beagle{bone,board}-linux-libre-pck to libre
Diffstat (limited to 'libre/uboot-beaglebone-linux-libre-pck/PKGBUILD')
-rw-r--r--libre/uboot-beaglebone-linux-libre-pck/PKGBUILD45
1 files changed, 45 insertions, 0 deletions
diff --git a/libre/uboot-beaglebone-linux-libre-pck/PKGBUILD b/libre/uboot-beaglebone-linux-libre-pck/PKGBUILD
new file mode 100644
index 000000000..e8c2c7e5d
--- /dev/null
+++ b/libre/uboot-beaglebone-linux-libre-pck/PKGBUILD
@@ -0,0 +1,45 @@
+# U-Boot: BeagleBone and BeagleBone Black
+# 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-beaglebone-${_pkgname}
+pkgver=2015.04
+pkgrel=1.2
+pkgdesc="U-Boot for BeagleBone and BeagleBone Black (built for the linux-libre-pck kernel package)"
+arch=('armv7h')
+url="http://git.denx.de/u-boot.git/"
+depends=('linux-libre-pck')
+makedepends=('bc')
+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'
+ '69e0f4a88119749a5c263cdedcece25f'
+ '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}"
+}