svn commit: r352063 - head/tools/boot

Ed Maste emaste at FreeBSD.org
Mon Sep 9 14:51:26 UTC 2019


Author: emaste
Date: Mon Sep  9 14:51:25 2019
New Revision: 352063
URL: https://svnweb.freebsd.org/changeset/base/352063

Log:
  ci-qemu-test: if firmware is not available, hint at pkg to install
  
  uefi-edk2-qemu-x86_64 provides the firmware ci-qemu-test.sh expects to
  use.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/tools/boot/ci-qemu-test.sh

Modified: head/tools/boot/ci-qemu-test.sh
==============================================================================
--- head/tools/boot/ci-qemu-test.sh	Mon Sep  9 14:41:39 2019	(r352062)
+++ head/tools/boot/ci-qemu-test.sh	Mon Sep  9 14:51:25 2019	(r352063)
@@ -84,6 +84,7 @@ fi
 # Locate the uefi firmware file used by qemu.
 : ${OVMF:=/usr/local/share/uefi-edk2-qemu/QEMU_UEFI_CODE-x86_64.fd}
 if [ ! -r "${OVMF}" ]; then
+	echo "NOTE: UEFI firmware available in the uefi-edk2-qemu-x86_64 package" >&2
 	die "Cannot read UEFI firmware file ${OVMF}"
 fi
 


More information about the svn-src-all mailing list