From 71cddadfd56ed51d8efff142a898c6a53035c9a5 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Tue, 28 Apr 2015 17:16:08 +0200 Subject: [PATCH] New package: usbarmory-u-boot-2015.04 --- srcpkgs/usbarmory-u-boot/template | 33 +++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 srcpkgs/usbarmory-u-boot/template diff --git a/srcpkgs/usbarmory-u-boot/template b/srcpkgs/usbarmory-u-boot/template new file mode 100644 index 00000000000..f579f126612 --- /dev/null +++ b/srcpkgs/usbarmory-u-boot/template @@ -0,0 +1,33 @@ +# Template file for 'usbarmory-uboot' +pkgname=usbarmory-u-boot +version=2015.04 +revision=1 +wrksrc="u-boot-$version" +hostmakedepends="uboot-mkimage" +short_desc="USB armory U-Boot files for SD booting" +maintainer="Enno Boland " +license="GPL-2" +homepage="https://github.com/hardkernel/u-boot" +distfiles="http://ftp.denx.de/pub/u-boot/u-boot-$version.tar.bz2" +checksum="0a1a70df586655f527befa6f12e184e96ed61b126e5a567382321b17200f5d60" + +only_for_archs="armv7l" + +do_configure() { + make distclean + make usbarmory_config +} + +do_build() { + unset CFLAGS CXXFLAGS LDFLAGS + + if [ "$CROSS_BUILD" ]; then + make ARCH=arm CROSS_COMPILE=${XBPS_CROSS_TRIPLET}- + else + make ARCH=arm + fi +} + +do_install() { + vinstall u-boot.imx 600 boot +}