From owner-svn-ports-head@freebsd.org Tue Mar 9 09:03:55 2021 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 AA49257014F; Tue, 9 Mar 2021 09:03:55 +0000 (UTC) (envelope-from lwhsu@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Dvq574TGdz3LsP; Tue, 9 Mar 2021 09:03:55 +0000 (UTC) (envelope-from lwhsu@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 8C5771964F; Tue, 9 Mar 2021 09:03:55 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12993tfd030435; Tue, 9 Mar 2021 09:03:55 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12993scn030432; Tue, 9 Mar 2021 09:03:54 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202103090903.12993scn030432@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Tue, 9 Mar 2021 09:03:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r567909 - in head/sysutils: . u-boot-orangepi-zero-plus X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/sysutils: . u-boot-orangepi-zero-plus X-SVN-Commit-Revision: 567909 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.34 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: Tue, 09 Mar 2021 09:03:55 -0000 Author: lwhsu Date: Tue Mar 9 09:03:54 2021 New Revision: 567909 URL: https://svnweb.freebsd.org/changeset/ports/567909 Log: Add sysutils/u-boot-orangepi-zero-plus: Das U-Boot build for orangepi-zero-plus PR: 253052 Submitted by: balazs@wee.hu Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D28325 Added: head/sysutils/u-boot-orangepi-zero-plus/ head/sysutils/u-boot-orangepi-zero-plus/Makefile (contents, props changed) head/sysutils/u-boot-orangepi-zero-plus/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Mar 9 08:51:14 2021 (r567908) +++ head/sysutils/Makefile Tue Mar 9 09:03:54 2021 (r567909) @@ -1385,6 +1385,7 @@ SUBDIR += u-boot-orangepi-plus-2e SUBDIR += u-boot-orangepi-r1 SUBDIR += u-boot-orangepi-zero + SUBDIR += u-boot-orangepi-zero-plus SUBDIR += u-boot-pandaboard SUBDIR += u-boot-pcduino3 SUBDIR += u-boot-pine-h64 Added: head/sysutils/u-boot-orangepi-zero-plus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-orangepi-zero-plus/Makefile Tue Mar 9 09:03:54 2021 (r567909) @@ -0,0 +1,9 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= orangepi-zero-plus +BOARD_CONFIG= orangepi_zero_plus_defconfig +FAMILY= allwinner64 + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/u-boot-orangepi-zero-plus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-orangepi-zero-plus/pkg-descr Tue Mar 9 09:03:54 2021 (r567909) @@ -0,0 +1,13 @@ +U-Boot loader for OrangePi Zero Plus. + +To install this bootloader on an sdcard just do : +dd if=$LOCALBASE/share/u-boot/u-boot-orangepi-zero-plus/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=128k seek=1 conv=sync + +This version is patched so that: + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included + +For information about running FreeBSD on Allwinner boards, see +https://wiki.freebsd.org/FreeBSD/arm/Allwinner + +WWW: https://www.denx.de/wiki/U-Boot