From owner-svn-ports-head@freebsd.org Sat Nov 11 17:08:51 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 15C1FE6F569; Sat, 11 Nov 2017 17:08:51 +0000 (UTC) (envelope-from manu@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 D3A3A66DA9; Sat, 11 Nov 2017 17:08:50 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vABH8nUV012970; Sat, 11 Nov 2017 17:08:49 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vABH8nX4012967; Sat, 11 Nov 2017 17:08:49 GMT (envelope-from manu@FreeBSD.org) Message-Id: <201711111708.vABH8nX4012967@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Sat, 11 Nov 2017 17:08:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453980 - in head/sysutils: . u-boot-sopine X-SVN-Group: ports-head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: in head/sysutils: . u-boot-sopine X-SVN-Commit-Revision: 453980 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: Sat, 11 Nov 2017 17:08:51 -0000 Author: manu (src committer) Date: Sat Nov 11 17:08:49 2017 New Revision: 453980 URL: https://svnweb.freebsd.org/changeset/ports/453980 Log: Add u-boot port for Sopine/Pine64-LTS Reviewed by: imp (earlier version) Approved by: imp Differential Revision: https://reviews.freebsd.org/D13022 Added: head/sysutils/u-boot-sopine/ head/sysutils/u-boot-sopine/Makefile (contents, props changed) head/sysutils/u-boot-sopine/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat Nov 11 16:21:09 2017 (r453979) +++ head/sysutils/Makefile Sat Nov 11 17:08:49 2017 (r453980) @@ -1222,6 +1222,7 @@ SUBDIR += u-boot-rpi2 SUBDIR += u-boot-rpi3 SUBDIR += u-boot-sinovoip-bpi-m3 + SUBDIR += u-boot-sopine SUBDIR += u-boot-utilite SUBDIR += u-boot-wandboard SUBDIR += u-boot-zedboard Added: head/sysutils/u-boot-sopine/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-sopine/Makefile Sat Nov 11 17:08:49 2017 (r453980) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +MAINTAINER= manu@FreeBSD.org +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= sopine +BOARD_CONFIG= sopine_baseboard_defconfig +FAMILY= allwinner64 + +BUILD_DEPENDS= ${LOCALBASE}/share/atf-allwinner/bl31.bin:sysutils/atf-allwinner +MAKE_ENV+= BL31=${LOCALBASE}/share/atf-allwinner/bl31.bin + +post-build: + ${CAT} ${WRKSRC}/spl/sunxi-spl.bin ${WRKSRC}/u-boot.itb > ${WRKSRC}/u-boot-sunxi-with-spl.bin + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/u-boot-sopine/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-sopine/pkg-descr Sat Nov 11 17:08:49 2017 (r453980) @@ -0,0 +1,9 @@ +U-Boot loader and related files for the Sopine/Pine64-LTS. + +To install this bootloader on an sdcard just do: +dd if=/usr/local/share/u-boot/u-boot-pine64/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