From owner-svn-ports-all@freebsd.org Fri May 8 16:49:29 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 CD1F22DC3FB; Fri, 8 May 2020 16:49:29 +0000 (UTC) (envelope-from trasz@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 49Jbs554VBz42wr; Fri, 8 May 2020 16:49:29 +0000 (UTC) (envelope-from trasz@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 A4E475720; Fri, 8 May 2020 16:49:29 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 048GnTwr038347; Fri, 8 May 2020 16:49:29 GMT (envelope-from trasz@FreeBSD.org) Received: (from trasz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 048GnT8J038344; Fri, 8 May 2020 16:49:29 GMT (envelope-from trasz@FreeBSD.org) Message-Id: <202005081649.048GnT8J038344@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trasz set sender to trasz@FreeBSD.org using -f From: Edward Tomasz Napierala Date: Fri, 8 May 2020 16:49:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r534413 - in head/sysutils: . u-boot-qemu-arm64 X-SVN-Group: ports-head X-SVN-Commit-Author: trasz X-SVN-Commit-Paths: in head/sysutils: . u-boot-qemu-arm64 X-SVN-Commit-Revision: 534413 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.32 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: Fri, 08 May 2020 16:49:29 -0000 Author: trasz Date: Fri May 8 16:49:28 2020 New Revision: 534413 URL: https://svnweb.freebsd.org/changeset/ports/534413 Log: Add sysutils/u-boot-qemu-arm64: U-Boot build for QEMU aarch64 Reviewed by: manu Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D24726 Added: head/sysutils/u-boot-qemu-arm64/ head/sysutils/u-boot-qemu-arm64/Makefile (contents, props changed) head/sysutils/u-boot-qemu-arm64/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri May 8 16:28:08 2020 (r534412) +++ head/sysutils/Makefile Fri May 8 16:49:28 2020 (r534413) @@ -1335,6 +1335,7 @@ SUBDIR += u-boot-pinebook SUBDIR += u-boot-pinebookpro SUBDIR += u-boot-qemu-arm + SUBDIR += u-boot-qemu-arm64 SUBDIR += u-boot-riotboard SUBDIR += u-boot-rock64 SUBDIR += u-boot-rockpro64 Added: head/sysutils/u-boot-qemu-arm64/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-qemu-arm64/Makefile Fri May 8 16:49:28 2020 (r534413) @@ -0,0 +1,12 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= qemu-arm64 +BOARD_CONFIG= qemu_arm64_defconfig +FAMILY= qemu +UBOOT_ARCH= aarch64 + +UBOOT_PLIST= u-boot.bin + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/u-boot-qemu-arm64/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-qemu-arm64/pkg-descr Fri May 8 16:49:28 2020 (r534413) @@ -0,0 +1,8 @@ +U-Boot loader for QEMU arm64 + +To use this bootloader to boot a FreeBSD aarch64 image, install emulators/qemu +and execute it as eg: + +qemu-system-aarch64 -M virt -cpu cortex-a57 -m 512m -nographic -bios /usr/local/share/u-boot/u-boot-qemu-arm64/u-boot.bin -hda FreeBSD-13.0-CURRENT-arm64-aarch64-RPI3-20200409-r359731.img + +For general information about U-Boot see WWW: https://www.denx.de/wiki/U-Boot