From owner-svn-ports-all@freebsd.org Mon Jun 18 22:38:09 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5092710028C3; Mon, 18 Jun 2018 22:38:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 06416779B0; Mon, 18 Jun 2018 22:38:09 +0000 (UTC) (envelope-from linimon@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 D829426BA; Mon, 18 Jun 2018 22:38:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IMc8Cq026272; Mon, 18 Jun 2018 22:38:08 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IMc8JA026270; Mon, 18 Jun 2018 22:38:08 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806182238.w5IMc8JA026270@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 22:38:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472720 - in head/sysutils: . u-boot-orangepi-pc-plus X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/sysutils: . u-boot-orangepi-pc-plus X-SVN-Commit-Revision: 472720 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 22:38:09 -0000 Author: linimon Date: Mon Jun 18 22:38:07 2018 New Revision: 472720 URL: https://svnweb.freebsd.org/changeset/ports/472720 Log: Add new u-boot port customized for the Orange Pi PC Plus. PR: 227506 Submitted by: Curtis Villamizar Added: head/sysutils/u-boot-orangepi-pc-plus/ head/sysutils/u-boot-orangepi-pc-plus/Makefile (contents, props changed) head/sysutils/u-boot-orangepi-pc-plus/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Jun 18 21:45:43 2018 (r472719) +++ head/sysutils/Makefile Mon Jun 18 22:38:07 2018 (r472720) @@ -1303,6 +1303,7 @@ SUBDIR += u-boot-olinuxino-lime SUBDIR += u-boot-orangepi-one SUBDIR += u-boot-orangepi-pc + SUBDIR += u-boot-orangepi-pc-plus SUBDIR += u-boot-orangepi-pc2 SUBDIR += u-boot-orangepi-plus-2e SUBDIR += u-boot-orangepi-zero Added: head/sysutils/u-boot-orangepi-pc-plus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-orangepi-pc-plus/Makefile Mon Jun 18 22:38:07 2018 (r472720) @@ -0,0 +1,9 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= orangepi-pc-plus +BOARD_CONFIG= orangepi_pc_plus_defconfig +FAMILY= allwinner + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/u-boot-orangepi-pc-plus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-orangepi-pc-plus/pkg-descr Mon Jun 18 22:38:07 2018 (r472720) @@ -0,0 +1,13 @@ +U-Boot loader for OrangePi PC Plus. + +To install this bootloader on an sdcard just do : +dd if=/usr/local/share/u-boot/u-boot-orangepi-pc-plus/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,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: http://www.denx.de/wiki/U-Boot