summaryrefslogtreecommitdiff
path: root/libre-testing/uboot4extlinux-omap4_panda/PKGBUILD
blob: ce40c7ede326c34e43ce05bb4911de510995151b (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
44
45
46
47
48
# U-Boot: PandaBoard and PandaBoard ES
# Maintainer: André Silva <emulatorman@parabola.nu>

buildarch=4

pkgname=uboot4extlinux-omap4_panda
pkgver=2016.01
pkgrel=4
pkgdesc="U-Boot with Extlinux support for PandaBoard and PandaBoard ES"
arch=('armv7h')
url="http://git.denx.de/u-boot.git/"
conflicts=('uboot-omap4_panda' 'uboot4grub-omap4_panda')
makedepends=('bc')
license=('GPL')
install=${pkgname}.install
backup=('boot/extlinux/extlinux.conf' 'boot/uEnv.txt')
source=("ftp://ftp.denx.de/pub/u-boot/u-boot-${pkgver}.tar.bz2"
        '0001-parabola-arm-modifications.patch'
        'extlinux.conf'
        'uEnv.txt')
sha256sums=('e5792fba9399d9804aa2ef667f14ff771e2cdece72367d340250265bf095a5d5'
            '1325236fc382a85d434f8f53dd320aa026b228476125745bc9800e6a03060ab5'
            'e96d167d99967ebefde8d02b27b4564e46409cc0c8738d5de72f431a2e438cf8'
            '79c60872095fb4a421a532ce918ffb0927398a83df028578aebf46f54a4d6ed6')

prepare() {
  cd u-boot-${pkgver}

  patch -Np1 -i ../0001-parabola-arm-modifications.patch
}

build() {
  cd u-boot-${pkgver}

  unset LDFLAGS

  make distclean
  make omap4_panda_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
}