Received: by mail.netbsd.org (Postfix, from userid 605) id BCD6B84D74; Fri, 1 Sep 2017 10:17:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 509C984D25 for ; Fri, 1 Sep 2017 10:17:49 +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 XsqjCdtDY5Aw for ; Fri, 1 Sep 2017 10:17:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D5B1E84CE2 for ; Fri, 1 Sep 2017 10:17:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D4012FA97; Fri, 1 Sep 2017 10:17:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15042610686880" MIME-Version: 1.0 Date: Fri, 1 Sep 2017 10:17:48 +0000 From: "Jared D. McNeill" Subject: CVS commit: pkgsrc/sysutils/dtb-arm64-sun50i To: pkgsrc-changes@NetBSD.org Reply-To: jmcneill@netbsd.org X-Mailer: log_accum Message-Id: <20170901101748.D4012FA97@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. --_----------=_15042610686880 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jmcneill Date: Fri Sep 1 10:17:48 UTC 2017 Added Files: pkgsrc/sysutils/dtb-arm64-sun50i: DESCR Makefile Log Message: Initial import of dtb-arm64-sun50i. The devicetree is a data structure for describing hardware. Rather than hard coding every detail of a device into an operating system, many aspects of the hardware can be described in a data structure that is passed to the operating system at boot time. This package includes Device Tree Blob (.dtb) files generated from the Linux kernel for Allwinner sun50i devices. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/dtb-arm64-sun50i/DESCR \ pkgsrc/sysutils/dtb-arm64-sun50i/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15042610686880 Content-Disposition: inline Content-Length: 1169 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/sysutils/dtb-arm64-sun50i/DESCR diff -u /dev/null pkgsrc/sysutils/dtb-arm64-sun50i/DESCR:1.1 --- /dev/null Fri Sep 1 10:17:48 2017 +++ pkgsrc/sysutils/dtb-arm64-sun50i/DESCR Fri Sep 1 10:17:48 2017 @@ -0,0 +1,7 @@ +The devicetree is a data structure for describing hardware. Rather than +hard coding every detail of a device into an operating system, many aspects +of the hardware can be described in a data structure that is passed to the +operating system at boot time. + +This package includes Device Tree Blob (.dtb) files generated from +the Linux kernel for Allwinner sun50i devices. Index: pkgsrc/sysutils/dtb-arm64-sun50i/Makefile diff -u /dev/null pkgsrc/sysutils/dtb-arm64-sun50i/Makefile:1.1 --- /dev/null Fri Sep 1 10:17:48 2017 +++ pkgsrc/sysutils/dtb-arm64-sun50i/Makefile Fri Sep 1 10:17:48 2017 @@ -0,0 +1,11 @@ +# $NetBSD: Makefile,v 1.1 2017/09/01 10:17:48 jmcneill Exp $ + +DTB_ARCH= arm64 +DTB_DEVICE= sun50i +DTB_DTS= allwinner/sun50i-a64-bananapi-m64.dts \ + allwinner/sun50i-a64-pine64-plus.dts \ + allwinner/sun50i-a64-pine64.dts + +.include "../../sysutils/dtc/linux-dtb.mk" + +.include "../../mk/bsd.pkg.mk" --_----------=_15042610686880--