summaryrefslogtreecommitdiff
path: root/libre/uboot-cubox-i-linux-libre/PKGBUILD
blob: dc846cffefedd7adbf7d34f1112da2bbfaa1e05b (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
70
71
# U-Boot: UDOO
# Maintainer (Arch): Dave Higham <pepedog@archlinuxarm.org>
# Contributor: André Silva <emulatorman@parabola.nu>

buildarch=4

_pkgname=linux-libre
pkgname=("uboot-cubox-i-${_pkgname}")
pkgver=2013.10
pkgrel=4
arch=('armv7h')
url="http://git.denx.de/u-boot.git/"
license=('GPL')
makedepends=('bc')
depends=('linux-libre')
replaces=('uboot-cubox-i')
option=('!strip')
_commit=e509dd30e97bf2cbce21502e4462d9d7c1d85daa
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'
        'check_dtbs_subdir_fix.patch')
md5sums=('3417d53a913949fd80c052fc8662c2a4'
         '721a46867e189d8dedc6b6f86a536a34'
         'b8cd082b76224d157d55404d0bc87831'
         'cf823fe2da67b8db5b9de9352a815f91'
         '6f3d537701904f0244e6d857e2545c5d'
         '8ed91e4257bfb7e0971fa988342537a3'
         '629d34349b5652e2d4274ad89e1c4481'
         '8087672256020417438b12ec4946e1cf'
         '5d5ea5bd73957bbf6ec18e1ae65a5e9c')
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 ../check_dtbs_subdir_fix.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 (built for the linux-libre kernel package)"
  install=${pkgname}.install

  cd u-boot-imx6-${_commit}

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