summaryrefslogtreecommitdiff
path: root/libre/uboot-mx6_cubox-i/PKGBUILD
blob: d8355892a995e99455760ea3fe5a3b7e001ffde1 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Maintainer: André Silva <emulatorman@parabola.nu>

buildarch=4

pkgbase=uboot-mx6_cubox-i
pkgname=('uboot-mx6_cubox-i')
pkgver=2013.10
pkgrel=1
arch=('armv7h')
url="http://git.denx.de/u-boot.git/"
license=('GPL')
depends=('linux-libre')
replaces=('uboot-cubox-i' 'uboot-cubox-i-linux-libre')
conflicts=('uboot4extlinux-mx6_cubox-i' 'uboot4grub-mx6_cubox-i')
option=('!strip')
_commit=408544d61f230060f18ffe2e06565deadbcf3451
source=("uboot-${_commit}.tar.gz::https://github.com/SolidRun/u-boot-imx6/archive/${_commit}.tar.gz"
        'kernel-add-support-for-gcc-5.patch'
        'arm_board_use_weak.patch'
        'leds_missing_include.patch'
        'remove_unnecessary_inits.patch'
        'u-boot-002-gcc5-use_gcc_inline_version_instead_c99.patch'
	'no-unalligned-access.patch'
        'common-main.c-make-show_boot_progress-__weak.patch'
        'parabola-modifications.patch')
md5sums=('8dc15f4cf0b244a8d9598a2ce93056a4'
         '721a46867e189d8dedc6b6f86a536a34'
         'b8cd082b76224d157d55404d0bc87831'
         'cf823fe2da67b8db5b9de9352a815f91'
         '6f3d537701904f0244e6d857e2545c5d'
         '8ed91e4257bfb7e0971fa988342537a3'
         '629d34349b5652e2d4274ad89e1c4481'
         '8087672256020417438b12ec4946e1cf'
         '19178e6d85b6b8278fa70eee5db18f83')
prepare() {
  cd u-boot-imx6-${_commit}

  patch -Np1 -i ../kernel-add-support-for-gcc-5.patch
  patch -Np1 -i ../arm_board_use_weak.patch
  patch -Np1 -i ../leds_missing_include.patch
  patch -Np1 -i ../remove_unnecessary_inits.patch
  patch -Np1 -i ../u-boot-002-gcc5-use_gcc_inline_version_instead_c99.patch
  patch -Np1 -i ../no-unalligned-access.patch
  patch -Np1 -i ../common-main.c-make-show_boot_progress-__weak.patch
  patch -Np1 -i ../parabola-modifications.patch
}

build() {
  cd u-boot-imx6-${_commit}

  unset CFLAGS
  unset CXXFLAGS
  unset LDFLAGS

  make distclean
  make mx6_cubox-i_config
  make
}

package() {
  pkgdesc="U-Boot for all CuBox-i variants"
  install=${pkgbase}.install

  cd u-boot-imx6-${_commit}

  mkdir -p "${pkgdir}"/boot
  cp u-boot.img "${pkgdir}"/boot
  cp SPL "${pkgdir}"/boot
}