Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 May 2020 16:49:29 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
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
Message-ID:  <202005081649.048GnT8J038344@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005081649.048GnT8J038344>