From owner-svn-ports-all@freebsd.org Sat Apr 25 16:39:32 2020 Return-Path: Delivered-To: svn-ports-all@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 73F332B7A3E; Sat, 25 Apr 2020 16:39:32 +0000 (UTC) (envelope-from manu@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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 498cFc2LFdz4Hw5; Sat, 25 Apr 2020 16:39:32 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 46E53A912; Sat, 25 Apr 2020 16:39:32 +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 03PGdWHK006721; Sat, 25 Apr 2020 16:39:32 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03PGdV1d006717; Sat, 25 Apr 2020 16:39:31 GMT (envelope-from manu@FreeBSD.org) Message-Id: <202004251639.03PGdV1d006717@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Sat, 25 Apr 2020 16:39:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r532960 - in head/sysutils: . u-boot-pinebookpro X-SVN-Group: ports-head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: in head/sysutils: . u-boot-pinebookpro X-SVN-Commit-Revision: 532960 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.29 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: Sat, 25 Apr 2020 16:39:32 -0000 Author: manu Date: Sat Apr 25 16:39:31 2020 New Revision: 532960 URL: https://svnweb.freebsd.org/changeset/ports/532960 Log: sysutils/u-boot-pinebookpro: Add new port This is a u-boot slave port for the Pine64 PineBookPro, an RK3399 ARM64 laptop. The patches have been submitted upstream and will probably be part of the next u-boot release, but add the port in the meantime in case anyone wants to start testing/dev FreeBSD on this laptop. It doesn't have video support for now so one want to use a serial cable. Added: head/sysutils/u-boot-pinebookpro/ head/sysutils/u-boot-pinebookpro/Makefile (contents, props changed) head/sysutils/u-boot-pinebookpro/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat Apr 25 15:55:47 2020 (r532959) +++ head/sysutils/Makefile Sat Apr 25 16:39:31 2020 (r532960) @@ -1362,6 +1362,7 @@ SUBDIR += u-boot-pine64 SUBDIR += u-boot-pine64-lts SUBDIR += u-boot-pinebook + SUBDIR += u-boot-pinebookpro SUBDIR += u-boot-qemu-arm SUBDIR += u-boot-riotboard SUBDIR += u-boot-rock64 Added: head/sysutils/u-boot-pinebookpro/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-pinebookpro/Makefile Sat Apr 25 16:39:31 2020 (r532960) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= pinebookpro +BOARD_CONFIG= pinebook-pro-rk3399_defconfig +FAMILY= rk3399 + +PATCHFILES+= 1273633/raw \ + 1273674/raw \ + 1273675/raw \ + 1273676/raw \ + 1273677/raw \ + 1273678/raw + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/u-boot-pinebookpro/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-pinebookpro/pkg-descr Sat Apr 25 16:39:31 2020 (r532960) @@ -0,0 +1,7 @@ +U-Boot loader and related files for the Pine64 RockPro64. + +To install this bootloader on an sdcard just do: +dd if=/usr/local/share/u-boot/u-boot-rockpro64/idbloader.img of=/path/to/sdcarddevice seek=64 bs=512 conv=sync +dd if=/usr/local/share/u-boot/u-boot-rockpro64/u-boot.itb of=/path/to/sdcarddevice seek=16384 bs=512 conv=sync + +WWW: https://www.denx.de/wiki/U-Boot