From owner-svn-ports-head@freebsd.org Wed Aug 2 15:36:31 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92EAEDD355A; Wed, 2 Aug 2017 15:36:31 +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 mx1.freebsd.org (Postfix) with ESMTPS id 61B79698F3; Wed, 2 Aug 2017 15:36:31 +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 v72FaUCV092385; Wed, 2 Aug 2017 15:36:30 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v72FaUvg092382; Wed, 2 Aug 2017 15:36:30 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201708021536.v72FaUvg092382@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 2 Aug 2017 15:36:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r447113 - in head/sysutils: . u-boot-nanopi-neo X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/sysutils: . u-boot-nanopi-neo X-SVN-Commit-Revision: 447113 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.23 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: Wed, 02 Aug 2017 15:36:31 -0000 Author: linimon Date: Wed Aug 2 15:36:30 2017 New Revision: 447113 URL: https://svnweb.freebsd.org/changeset/ports/447113 Log: Add slave port of u-boot-master for NanoPi Neo board. PR: 220576 Submitted by: manu Added: head/sysutils/u-boot-nanopi-neo/ head/sysutils/u-boot-nanopi-neo/Makefile (contents, props changed) head/sysutils/u-boot-nanopi-neo/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Aug 2 15:21:02 2017 (r447112) +++ head/sysutils/Makefile Wed Aug 2 15:36:30 2017 (r447113) @@ -1183,6 +1183,7 @@ SUBDIR += u-boot-duovero SUBDIR += u-boot-imx-serial-loader SUBDIR += u-boot-master + SUBDIR += u-boot-nanopi-neo SUBDIR += u-boot-olimex-a20-som-evb SUBDIR += u-boot-olinuxino-lime SUBDIR += u-boot-orangepi-one Added: head/sysutils/u-boot-nanopi-neo/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-nanopi-neo/Makefile Wed Aug 2 15:36:30 2017 (r447113) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +MAINTAINER= manu@FreeBSD.org +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= nanopi_neo +BOARD_CONFIG= nanopi_neo_defconfig +FAMILY= allwinner + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/u-boot-nanopi-neo/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-nanopi-neo/pkg-descr Wed Aug 2 15:36:30 2017 (r447113) @@ -0,0 +1,16 @@ +U-Boot loader for NanoPi Neo. + +To install this bootloader, follow the instructions in + http://linux-sunxi.org/Bootable_SD_card#Bootloader + +This version is patched so that: + * ELF and API features are enabled. + * The distroboot command knows how to load FreeBSD loader(8) + * By default, it loads ubldr.bin (PIE) from file ubldr.bin on the FAT + partition to address 0x42000000, and launches it. If ubldr.bin is + not found, it falls back on ubldr + +For information about running FreeBSD on NanoPi Neo, see + https://wiki.freebsd.org/FreeBSD/arm/Allwinner + +For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot