Received: by mail.netbsd.org (Postfix, from userid 605) id 56EB784DBE; Mon, 29 Apr 2019 07:48:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BBB3384DC4 for ; Mon, 29 Apr 2019 07:48:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ARaAxaANF3OT for ; Mon, 29 Apr 2019 07:48:50 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3CBB384D2B for ; Mon, 29 Apr 2019 07:48:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3A375FB16; Mon, 29 Apr 2019 07:48:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1556524130292740" MIME-Version: 1.0 Date: Mon, 29 Apr 2019 07:48:50 +0000 From: "matthew green" Subject: CVS commit: pkgsrc/sysutils To: pkgsrc-changes@NetBSD.org Reply-To: mrg@netbsd.org X-Mailer: log_accum Message-Id: <20190429074850.3A375FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1556524130292740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mrg Date: Mon Apr 29 07:48:50 UTC 2019 Modified Files: pkgsrc/sysutils: Makefile Added Files: pkgsrc/sysutils/u-boot-cubietruck-plus: DESCR Makefile PLIST Log Message: add u-boot for cubietruck plus (cubieboard 5). works just fine. To generate a diff of this commit: cvs rdiff -u -r1.806 -r1.807 pkgsrc/sysutils/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/u-boot-cubietruck-plus/DESCR \ pkgsrc/sysutils/u-boot-cubietruck-plus/Makefile \ pkgsrc/sysutils/u-boot-cubietruck-plus/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1556524130292740 Content-Disposition: inline Content-Length: 2060 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/Makefile diff -u pkgsrc/sysutils/Makefile:1.806 pkgsrc/sysutils/Makefile:1.807 --- pkgsrc/sysutils/Makefile:1.806 Fri Apr 19 10:39:53 2019 +++ pkgsrc/sysutils/Makefile Mon Apr 29 07:48:49 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.806 2019/04/19 10:39:53 jmcneill Exp $ +# $NetBSD: Makefile,v 1.807 2019/04/29 07:48:49 mrg Exp $ # COMMENT= System utilities @@ -628,6 +628,7 @@ SUBDIR+= u-boot-chip-pro SUBDIR+= u-boot-cubieboard2 SUBDIR+= u-boot-cubieboard4 SUBDIR+= u-boot-cubietruck +SUBDIR+= u-boot-cubietruck-plus SUBDIR+= u-boot-de0-nanosoc SUBDIR+= u-boot-hummingbird-a31 SUBDIR+= u-boot-jetson-tk1 Added files: Index: pkgsrc/sysutils/u-boot-cubietruck-plus/DESCR diff -u /dev/null pkgsrc/sysutils/u-boot-cubietruck-plus/DESCR:1.1 --- /dev/null Mon Apr 29 07:48:50 2019 +++ pkgsrc/sysutils/u-boot-cubietruck-plus/DESCR Mon Apr 29 07:48:50 2019 @@ -0,0 +1,5 @@ +U-Boot is a bootloader for embedded boards based on PowerPC, ARM, MIPS and +several other processors, which can be installed in a boot ROM and used to +initialize and test the hardware or to download and run application code. + +This package provides U-Boot for the Cubietech Cubietruck Plus. Index: pkgsrc/sysutils/u-boot-cubietruck-plus/Makefile diff -u /dev/null pkgsrc/sysutils/u-boot-cubietruck-plus/Makefile:1.1 --- /dev/null Mon Apr 29 07:48:50 2019 +++ pkgsrc/sysutils/u-boot-cubietruck-plus/Makefile Mon Apr 29 07:48:50 2019 @@ -0,0 +1,7 @@ +# $NetBSD: Makefile,v 1.1 2019/04/29 07:48:50 mrg Exp $ + +UBOOT_TARGET= cubietruck_plus +UBOOT_CONFIG= Cubietruck_plus_defconfig +UBOOT_BIN= u-boot-sunxi-with-spl.bin + +.include "../../sysutils/u-boot/u-boot-arm.mk" Index: pkgsrc/sysutils/u-boot-cubietruck-plus/PLIST diff -u /dev/null pkgsrc/sysutils/u-boot-cubietruck-plus/PLIST:1.1 --- /dev/null Mon Apr 29 07:48:50 2019 +++ pkgsrc/sysutils/u-boot-cubietruck-plus/PLIST Mon Apr 29 07:48:50 2019 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2019/04/29 07:48:50 mrg Exp $ +share/u-boot/cubietruck_plus/u-boot-sunxi-with-spl.bin --_----------=_1556524130292740--