svn commit: r534413 - in head/sysutils: . u-boot-qemu-arm64

Edward Tomasz Napierala trasz at FreeBSD.org
Fri May 8 16:49:29 UTC 2020


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


More information about the svn-ports-head mailing list