summaryrefslogtreecommitdiff
path: root/libre-testing/uboot4extlinux-chiliboard/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'libre-testing/uboot4extlinux-chiliboard/PKGBUILD')
-rw-r--r--libre-testing/uboot4extlinux-chiliboard/PKGBUILD61
1 files changed, 61 insertions, 0 deletions
diff --git a/libre-testing/uboot4extlinux-chiliboard/PKGBUILD b/libre-testing/uboot4extlinux-chiliboard/PKGBUILD
new file mode 100644
index 000000000..61c0208c1
--- /dev/null
+++ b/libre-testing/uboot4extlinux-chiliboard/PKGBUILD
@@ -0,0 +1,61 @@
+# U-Boot: ChiliBoard
+# Maintainer: André Silva <emulatorman@parabola.nu>
+
+buildarch=4
+
+pkgname=uboot4extlinux-chiliboard
+pkgver=2014.07
+pkgrel=1
+pkgdesc="U-Boot with Extlinux support for ChiliBoard"
+arch=('armv7h')
+url="http://git.denx.de/u-boot.git/"
+conflicts=('uboot-chiliboard' 'uboot4grub-chiliboard')
+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-Add-linux-compiler-gcc5.h-to-fix-builds-with-gcc5.patch'
+ '0002-ARM-asm-io.h-use-static-inline.patch'
+ '0003-common-main.c-make-show_boot_progress-__weak.patch'
+ '0004-common-board_f-cosmetic-use-__weak-for-leds.patch'
+ '0005-chiliboard-support.patch'
+ '0006-parabola-arm-modifications.patch'
+ 'extlinux.conf'
+ 'uEnv.txt')
+md5sums=('36d4bad687edcafa396fee607e505d4e'
+ 'e070e8b5cf8628b6440dfc9dbd87cb65'
+ '318310de19110167fe15ceac3ae32f7d'
+ '1792346431786e1442c4059cd3f288ed'
+ '2a32a77f123391c02935754ced2743c2'
+ '5951c799b35c526f02edbcb3eb1295fc'
+ '35147d090738dd0c8104a565de0f404e'
+ '068f6b4e8047115e73f29af5f384889b'
+ '0afad1f6f3f8609db6e1f5bb322b2a1a')
+
+prepare() {
+ cd u-boot-${pkgver}
+ patch -Np1 -i ../0001-Add-linux-compiler-gcc5.h-to-fix-builds-with-gcc5.patch
+ patch -Np1 -i ../0002-ARM-asm-io.h-use-static-inline.patch
+ patch -Np1 -i ../0003-common-main.c-make-show_boot_progress-__weak.patch
+ patch -Np1 -i ../0004-common-board_f-cosmetic-use-__weak-for-leds.patch
+ patch -Np1 -i ../0005-chiliboard-support.patch
+ patch -Np1 -i ../0006-parabola-arm-modifications.patch
+}
+
+build() {
+ cd u-boot-${pkgver}
+
+ unset CFLAGS CXXFLAGS LDFLAGS
+
+ make distclean
+ make chiliboard_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
+}