Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0761084D39 for ; Sun, 27 Aug 2023 21:04:19 +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 0nR0kjw14NOg for ; Sun, 27 Aug 2023 21:04:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7C3CA84D26 for ; Sun, 27 Aug 2023 21:04:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 74ECEFBDB; Sun, 27 Aug 2023 21:04:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693170258267790" MIME-Version: 1.0 Date: Sun, 27 Aug 2023 21:04:18 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/sysutils/u-boot To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20230827210418.74ECEFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693170258267790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Sun Aug 27 21:04:18 UTC 2023 Modified Files: pkgsrc/sysutils/u-boot: u-boot-rockchip.mk Log Message: u-boot-rockchip.mk: tweak some comments Update a comment, and fix spelling and grammar while here. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/sysutils/u-boot/u-boot-rockchip.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693170258267790 Content-Disposition: inline Content-Length: 1618 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/u-boot/u-boot-rockchip.mk diff -u pkgsrc/sysutils/u-boot/u-boot-rockchip.mk:1.16 pkgsrc/sysutils/u-boot/u-boot-rockchip.mk:1.17 --- pkgsrc/sysutils/u-boot/u-boot-rockchip.mk:1.16 Sun Aug 27 20:58:15 2023 +++ pkgsrc/sysutils/u-boot/u-boot-rockchip.mk Sun Aug 27 21:04:18 2023 @@ -1,4 +1,4 @@ -# $NetBSD: u-boot-rockchip.mk,v 1.16 2023/08/27 20:58:15 gutteridge Exp $ +# $NetBSD: u-boot-rockchip.mk,v 1.17 2023/08/27 21:04:18 gutteridge Exp $ # # used by sysutils/u-boot-rock64/Makefile # used by sysutils/u-boot-rockpro64/Makefile @@ -23,9 +23,9 @@ UBOOT_RK_SPI_OFF?= 1024 MAKE_ENV+= BL31=${PREFIX}/share/${TFA}/${UBOOT_IMAGE_TYPE}/bl31.elf post-build: -# wrap everything up into a single file that can be written to an SD card. -# note that the SD image starts at sector 64, and 64 + 448 = 512, so the -# u-boot.itb is loaded at 256KiB on the card iteslf. +# Wrap everything up into a single file that can be written to an SD card. +# Note that the SD image starts at sector 64, and 64 + 448 = 512, so the +# u-boot.itb is loaded at 256KiB on the card itself. cp ${WRKSRC}/idbloader.img ${WRKSRC}/rksd_loader.img dd if=${WRKSRC}/u-boot.itb seek=448 conv=notrunc of=${WRKSRC}/rksd_loader.img .if defined(UBOOT_MKIMAGE_RKSPI) @@ -35,7 +35,7 @@ post-build: -d ${WRKSRC}/tpl/u-boot-tpl.bin:${WRKSRC}/spl/u-boot-spl.bin \ ${WRKSRC}/rkspi_loader.img .else -# build SPI NOR flash image. See dev-ayufan/build.mk. +# Build SPI NOR flash image. See u-boot-rock64. set -e; b=0; while [ "$$b" != 128 ]; do \ dd bs=2k count=1; \ dd if=/dev/zero bs=2k count=1; \ --_----------=_1693170258267790--