summaryrefslogtreecommitdiff
path: root/libre-testing/uboot4grub-am335x_bone/PKGBUILD
blob: c32adac423f55bf30c18316103f8c5ec2a6195c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# U-Boot: BeagleBone and BeagleBone Black
# Maintainer: André Silva <emulatorman@parabola.nu>

buildarch=4

pkgname=uboot4grub-am335x_bone
pkgver=2015.04
pkgrel=1
pkgdesc="U-Boot with GRUB support for BeagleBone and BeagleBone Black"
arch=('armv7h')
url="http://git.denx.de/u-boot.git/"
depends=('grub-am335x_bone')
replaces=('uboot-beaglebone' 'uboot-grub-beaglebone')
conflicts=('uboot-beaglebone' 'uboot4grub' 'uboot-grub-beaglebone')
provides=('uboot-beaglebone' 'uboot4grub')
makedepends=('bc')
license=('GPL')
install=${pkgname}.install
source=("ftp://ftp.denx.de/pub/u-boot/u-boot-${pkgver}.tar.bz2"
        '0001-parabola-arm-modifications+grub-support.patch')
md5sums=('570bdc2c47270c2a98ca60ff6c5c74cd'
         'd8c8e9fea003cd06ef04fe1cd841d686')

prepare() {
  cd u-boot-${pkgver}
  patch -Np1 -i ../0001-parabola-arm-modifications+grub-support.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
  cp MLO u-boot.img "${pkgdir}"/boot
}