svn commit: r531322 - in head/sysutils: . u-boot-qemu-arm
Edward Tomasz Napierala
trasz at FreeBSD.org
Fri Apr 10 14:41:13 UTC 2020
Author: trasz
Date: Fri Apr 10 14:41:12 2020
New Revision: 531322
URL: https://svnweb.freebsd.org/changeset/ports/531322
Log:
Add sysutils/u-boot-qemu-arm: U-Boot build for QEMU
Reviewed by: manu
Sponsored by: DARPA
Differential Revision: https://reviews.freebsd.org/D24365
Added:
head/sysutils/u-boot-qemu-arm/
head/sysutils/u-boot-qemu-arm/Makefile (contents, props changed)
head/sysutils/u-boot-qemu-arm/pkg-descr (contents, props changed)
Modified:
head/sysutils/Makefile
Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile Fri Apr 10 14:19:52 2020 (r531321)
+++ head/sysutils/Makefile Fri Apr 10 14:41:12 2020 (r531322)
@@ -1360,6 +1360,7 @@
SUBDIR += u-boot-pine64
SUBDIR += u-boot-pine64-lts
SUBDIR += u-boot-pinebook
+ SUBDIR += u-boot-qemu-arm
SUBDIR += u-boot-riotboard
SUBDIR += u-boot-rock64
SUBDIR += u-boot-rockpro64
Added: head/sysutils/u-boot-qemu-arm/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/u-boot-qemu-arm/Makefile Fri Apr 10 14:41:12 2020 (r531322)
@@ -0,0 +1,11 @@
+# $FreeBSD$
+
+MASTERDIR= ${.CURDIR}/../u-boot-master
+
+MODEL= qemu-arm
+BOARD_CONFIG= qemu_arm_defconfig
+FAMILY= qemu
+
+UBOOT_PLIST= u-boot.bin
+
+.include "${MASTERDIR}/Makefile"
Added: head/sysutils/u-boot-qemu-arm/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/u-boot-qemu-arm/pkg-descr Fri Apr 10 14:41:12 2020 (r531322)
@@ -0,0 +1,8 @@
+U-Boot loader for QEMU
+
+To use this bootloader to boot a FreeBSD armv7 image, install emulators/qemu
+and execute it as eg:
+
+qemu-system-arm -M virt -m 512m -nographic -bios /usr/local/share/u-boot/u-boot-qemu-arm/u-boot.bin -hda FreeBSD-13.0-CURRENT-arm-armv7-GENERICSD-20200409-r359731.img
+
+For general information about U-Boot see WWW: https://www.denx.de/wiki/U-Boot
More information about the svn-ports-all
mailing list