diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-02-24 12:21:32 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-02-24 12:21:32 -0300 |
commit | b4969e199acb9c27641f860eb3cad33013a23cd6 (patch) | |
tree | 3cca9287c1772c2203f1fab60fd25132b92db7be /libre-testing/uboot-am335x_bone/PKGBUILD | |
parent | b68e91f1a5d6bbda6bcb72368c33fa5a1bef6653 (diff) |
uboot-am335x_bone-2015.04-5.1: use patch based on Arch ARM to add Extlinux support
Diffstat (limited to 'libre-testing/uboot-am335x_bone/PKGBUILD')
-rw-r--r-- | libre-testing/uboot-am335x_bone/PKGBUILD | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/libre-testing/uboot-am335x_bone/PKGBUILD b/libre-testing/uboot-am335x_bone/PKGBUILD new file mode 100644 index 000000000..2870d2e82 --- /dev/null +++ b/libre-testing/uboot-am335x_bone/PKGBUILD @@ -0,0 +1,53 @@ +# U-Boot: BeagleBone and BeagleBone Black +# Maintainer: André Silva <emulatorman@parabola.nu> +# Contributor: Jookia <166291@gmail.com> +# Contributor: Márcio Silva <coadde@parabola.nu> + +buildarch=4 + +pkgname=uboot-am335x_bone +pkgver=2015.04 +pkgrel=5.1 +pkgdesc="U-Boot for BeagleBone and BeagleBone Black" +arch=('armv7h') +url="http://git.denx.de/u-boot.git/" +replaces=('uboot-beaglebone-linux-libre' 'uboot-beaglebone-linux-libre-lts' + 'uboot-beaglebone-linux-libre-grsec' 'uboot-beaglebone-linux-libre-pck' + 'uboot-beaglebone') +conflicts=('uboot-beaglebone-linux-libre' 'uboot-beaglebone-linux-libre-lts' + 'uboot-beaglebone-linux-libre-grsec' 'uboot-beaglebone-linux-libre-pck' + 'uboot-beaglebone' 'uboot4grub-am335x_bone') +makedepends=('bc') +license=('GPL') +backup=(boot/extlinux/extlinux.conf) +install=${pkgname}.install +source=("ftp://ftp.denx.de/pub/u-boot/u-boot-${pkgver}.tar.bz2" + '0001-parabola-arm-modifications.patch' + 'extlinux.conf' + 'uEnv.txt') +md5sums=('570bdc2c47270c2a98ca60ff6c5c74cd' + '37784c8f8f52a615d65e775018d237fb' + '068f6b4e8047115e73f29af5f384889b' + '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/extlinux + cp MLO u-boot.img "${srcdir}"/uEnv.txt "${pkgdir}"/boot + cp "${srcdir}"/extlinux.conf "${pkgdir}"/boot/extlinux +} |