Received: by mail.netbsd.org (Postfix, from userid 605) id A673784D47; Sat, 23 Sep 2017 17:33:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 396B884D45 for ; Sat, 23 Sep 2017 17:33:13 +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 4rs-FIRDfqGI for ; Sat, 23 Sep 2017 17:33:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A496884C86 for ; Sat, 23 Sep 2017 17:33:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9A9D9FA9C; Sat, 23 Sep 2017 17:33:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1506187992267210" MIME-Version: 1.0 Date: Sat, 23 Sep 2017 17:33:12 +0000 From: "Jared D. McNeill" Subject: CVS commit: pkgsrc/sysutils To: pkgsrc-changes@NetBSD.org Reply-To: jmcneill@netbsd.org X-Mailer: log_accum Message-Id: <20170923173312.9A9D9FA9C@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. --_----------=_1506187992267210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jmcneill Date: Sat Sep 23 17:33:12 UTC 2017 Modified Files: pkgsrc/sysutils/u-boot: distinfo pkgsrc/sysutils/u-boot-jetson-tx1: Makefile PLIST Added Files: pkgsrc/sysutils/u-boot/patches: patch-include_configs_tegra-common.h Log Message: Increase CONFIG_SYS_BOOTM_LEN as the TEGRA kernel exceeds the default size limit. Install the correct files necessary for flashing with L4T R24.2.1's flash.sh script. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/sysutils/u-boot/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/u-boot-jetson-tx1/Makefile \ pkgsrc/sysutils/u-boot-jetson-tx1/PLIST cvs rdiff -u -r0 -r1.1 \ pkgsrc/sysutils/u-boot/patches/patch-include_configs_tegra-common.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1506187992267210 Content-Disposition: inline Content-Length: 3047 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/u-boot/distinfo diff -u pkgsrc/sysutils/u-boot/distinfo:1.5 pkgsrc/sysutils/u-boot/distinfo:1.6 --- pkgsrc/sysutils/u-boot/distinfo:1.5 Mon Sep 18 23:07:49 2017 +++ pkgsrc/sysutils/u-boot/distinfo Sat Sep 23 17:33:12 2017 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2017/09/18 23:07:49 jmcneill Exp $ +$NetBSD: distinfo,v 1.6 2017/09/23 17:33:12 jmcneill Exp $ SHA1 (u-boot-2017.07.tar.bz2) = 517c33f41e2969f3b5b88e9ae3c042acfe1bde05 RMD160 (u-boot-2017.07.tar.bz2) = b0d83a55b6daabdec28d85fdfb814a529c8d5eb9 @@ -8,5 +8,6 @@ SHA1 (patch-Kconfig) = 7e572929f220af5af SHA1 (patch-arch_arm_cpu_armv8_Kconfig) = 63cbbf2e3cebd46793fc03cc8e62297f6dc01aa9 SHA1 (patch-drivers_video_sunxi_sunxi__de2.c) = 0e1ff9965703ef18c5e6a54a858217ad99617ea6 SHA1 (patch-include_configs_sunxi-common.h) = b71c28480cc084860d63e95af33bc7eead8ac6ac +SHA1 (patch-include_configs_tegra-common.h) = 01b68620414f85edd029e54f7f8dc158888c4072 SHA1 (patch-lib_bch.c) = 2e20f6d65a736b474859ef3ee840aae05452c6f4 SHA1 (patch-tools_Makefile) = adc5082d369363113135d5c892822b57ee80ff19 Index: pkgsrc/sysutils/u-boot-jetson-tx1/Makefile diff -u pkgsrc/sysutils/u-boot-jetson-tx1/Makefile:1.1 pkgsrc/sysutils/u-boot-jetson-tx1/Makefile:1.2 --- pkgsrc/sysutils/u-boot-jetson-tx1/Makefile:1.1 Fri Sep 8 10:25:17 2017 +++ pkgsrc/sysutils/u-boot-jetson-tx1/Makefile Sat Sep 23 17:33:12 2017 @@ -1,8 +1,10 @@ -# $NetBSD: Makefile,v 1.1 2017/09/08 10:25:17 jmcneill Exp $ +# $NetBSD: Makefile,v 1.2 2017/09/23 17:33:12 jmcneill Exp $ + +PKGREVISION= 1 UBOOT_TARGET= jetson-tx1 UBOOT_CONFIG= p2371-2180_defconfig -UBOOT_BIN= u-boot.bin +UBOOT_BIN= u-boot u-boot-dtb.bin # Switch to EL1 before booting kernel (required for 32-bit support) PKG_DEFAULT_OPTIONS+= el1 Index: pkgsrc/sysutils/u-boot-jetson-tx1/PLIST diff -u pkgsrc/sysutils/u-boot-jetson-tx1/PLIST:1.1 pkgsrc/sysutils/u-boot-jetson-tx1/PLIST:1.2 --- pkgsrc/sysutils/u-boot-jetson-tx1/PLIST:1.1 Fri Sep 8 10:25:17 2017 +++ pkgsrc/sysutils/u-boot-jetson-tx1/PLIST Sat Sep 23 17:33:12 2017 @@ -1,2 +1,3 @@ -@comment $NetBSD: PLIST,v 1.1 2017/09/08 10:25:17 jmcneill Exp $ -share/u-boot/jetson-tx1/u-boot.bin +@comment $NetBSD: PLIST,v 1.2 2017/09/23 17:33:12 jmcneill Exp $ +share/u-boot/jetson-tx1/u-boot +share/u-boot/jetson-tx1/u-boot-dtb.bin Added files: Index: pkgsrc/sysutils/u-boot/patches/patch-include_configs_tegra-common.h diff -u /dev/null pkgsrc/sysutils/u-boot/patches/patch-include_configs_tegra-common.h:1.1 --- /dev/null Sat Sep 23 17:33:12 2017 +++ pkgsrc/sysutils/u-boot/patches/patch-include_configs_tegra-common.h Sat Sep 23 17:33:12 2017 @@ -0,0 +1,12 @@ +$NetBSD: patch-include_configs_tegra-common.h,v 1.1 2017/09/23 17:33:12 jmcneill Exp $ + +--- include/configs/tegra-common.h.orig 2017-07-10 17:07:38.000000000 +0000 ++++ include/configs/tegra-common.h +@@ -101,4 +101,7 @@ + #include + #endif + ++/* Override default uimg size limit */ ++#define CONFIG_SYS_BOOTM_LEN 0x1000000 ++ + #endif /* _TEGRA_COMMON_H_ */ --_----------=_1506187992267210--