From owner-svn-ports-head@freebsd.org Fri May 29 01:27:18 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4198532B693; Fri, 29 May 2020 01:27:18 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49Y6PL0zvzz4YPX; Fri, 29 May 2020 01:27:18 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1D08EFD09; Fri, 29 May 2020 01:27:18 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04T1RHT6017735; Fri, 29 May 2020 01:27:17 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04T1RHsM017731; Fri, 29 May 2020 01:27:17 GMT (envelope-from brd@FreeBSD.org) Message-Id: <202005290127.04T1RHsM017731@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Fri, 29 May 2020 01:27:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r536829 - in head/sysutils: . u-boot-rpi3 u-boot-rpi3-32 X-SVN-Group: ports-head X-SVN-Commit-Author: brd X-SVN-Commit-Paths: in head/sysutils: . u-boot-rpi3 u-boot-rpi3-32 X-SVN-Commit-Revision: 536829 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 May 2020 01:27:18 -0000 Author: brd (src,doc committer) Date: Fri May 29 01:27:16 2020 New Revision: 536829 URL: https://svnweb.freebsd.org/changeset/ports/536829 Log: Add sysutils/u-boot-rpi3-32 to build a 32-bit version of u-boot This is useful for using the camera hardware, as misc/raspberrypi-userland does not support aarch64. Approved by: imp, manu Differential Revision: https://reviews.freebsd.org/D21603 Added: head/sysutils/u-boot-rpi3-32/ head/sysutils/u-boot-rpi3-32/Makefile (contents, props changed) head/sysutils/u-boot-rpi3-32/pkg-descr - copied unchanged from r536828, head/sysutils/u-boot-rpi3/pkg-descr Modified: head/sysutils/Makefile head/sysutils/u-boot-rpi3/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri May 29 00:22:24 2020 (r536828) +++ head/sysutils/Makefile Fri May 29 01:27:16 2020 (r536829) @@ -1348,6 +1348,7 @@ SUBDIR += u-boot-rpi-0-w SUBDIR += u-boot-rpi2 SUBDIR += u-boot-rpi3 + SUBDIR += u-boot-rpi3-32 SUBDIR += u-boot-rpi4 SUBDIR += u-boot-sinovoip-bpi-m3 SUBDIR += u-boot-sopine Added: head/sysutils/u-boot-rpi3-32/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-rpi3-32/Makefile Fri May 29 01:27:16 2020 (r536829) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +MODEL= rpi3-32 +BOARD_CONFIG= rpi_3_32b_defconfig +UBOOT_ARCH= arm + +.include "${.CURDIR}/../u-boot-rpi3/Makefile" Copied: head/sysutils/u-boot-rpi3-32/pkg-descr (from r536828, head/sysutils/u-boot-rpi3/pkg-descr) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-rpi3-32/pkg-descr Fri May 29 01:27:16 2020 (r536829, copy of r536828, head/sysutils/u-boot-rpi3/pkg-descr) @@ -0,0 +1,3 @@ +U-Boot loader and related files for the RPi3 + +For general information about U-Boot see WWW: https://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-rpi3/Makefile ============================================================================== --- head/sysutils/u-boot-rpi3/Makefile Fri May 29 00:22:24 2020 (r536828) +++ head/sysutils/u-boot-rpi3/Makefile Fri May 29 01:27:16 2020 (r536829) @@ -7,14 +7,14 @@ PATCHFILES+= 939129/raw # Allow variable reservation of lowest pages for increased PSCI stub size. PATCHFILES+= 1245351/raw 1245352/raw -MODEL= rpi3 -BOARD_CONFIG= rpi_3_defconfig +MODEL?= rpi3 +BOARD_CONFIG?= rpi_3_defconfig FAMILY= rpi -UBOOT_ARCH= aarch64 +UBOOT_ARCH?= aarch64 DEPENDS= ${LOCALBASE}/share/rpi-firmware/bootcode.bin:sysutils/rpi-firmware -CONFIG_FRAGMENT= ${.CURDIR}/files/rpi3_fragment +CONFIG_FRAGMENT= ${.CURDIR}/../u-boot-rpi3/files/rpi3_fragment FRAGMENT_NAME= rpi3_fragment .include "${MASTERDIR}/Makefile"