From owner-svn-ports-head@freebsd.org Mon Feb 19 01:27:33 2018 Return-Path: Delivered-To: svn-ports-head@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 96807F19329; Mon, 19 Feb 2018 01:27:33 +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 46ACE77553; Mon, 19 Feb 2018 01:27:33 +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 3FBA013E1B; Mon, 19 Feb 2018 01:27:33 +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 w1J1RXc4015218; Mon, 19 Feb 2018 01:27:33 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1J1RWgF015215; Mon, 19 Feb 2018 01:27:32 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201802190127.w1J1RWgF015215@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 19 Feb 2018 01:27:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462269 - in head/sysutils: . u-boot-orangepi-pc X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/sysutils: . u-boot-orangepi-pc X-SVN-Commit-Revision: 462269 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.25 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: Mon, 19 Feb 2018 01:27:33 -0000 Author: linimon Date: Mon Feb 19 01:27:32 2018 New Revision: 462269 URL: https://svnweb.freebsd.org/changeset/ports/462269 Log: Add sysutils/u-boot-orangepi-pc, U-Boot for Orange Pi PC. This port is a near-direct copy of sysutils/u-boot-orangepi-pc2 except for being 64-bit. PR: 226013 Submitted by: Greg V Added: head/sysutils/u-boot-orangepi-pc/ head/sysutils/u-boot-orangepi-pc/Makefile (contents, props changed) head/sysutils/u-boot-orangepi-pc/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Feb 18 22:19:11 2018 (r462268) +++ head/sysutils/Makefile Mon Feb 19 01:27:32 2018 (r462269) @@ -1234,6 +1234,7 @@ SUBDIR += u-boot-olimex-a20-som-evb SUBDIR += u-boot-olinuxino-lime SUBDIR += u-boot-orangepi-one + SUBDIR += u-boot-orangepi-pc SUBDIR += u-boot-orangepi-pc2 SUBDIR += u-boot-orangepi-plus-2e SUBDIR += u-boot-orangepi-zero Added: head/sysutils/u-boot-orangepi-pc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-orangepi-pc/Makefile Mon Feb 19 01:27:32 2018 (r462269) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +MAINTAINER= uboot@FreeBSD.org +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= orangepi-pc +BOARD_CONFIG= orangepi_pc_defconfig +FAMILY= allwinner + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/u-boot-orangepi-pc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-orangepi-pc/pkg-descr Mon Feb 19 01:27:32 2018 (r462269) @@ -0,0 +1,9 @@ +U-Boot loader and related files for the OrangePi PC + +To install this bootloader on an sdcard just do: +dd if=/usr/local/share/u-boot/u-boot-orangepi-pc/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync + +For information about running FreeBSD on Allwinner boards, see + https://wiki.freebsd.org/FreeBSD/arm/Allwinner + +WWW: http://www.denx.de/wiki/U-Boot