svn commit: r332346 - head/release/amd64

Benno Rice benno at FreeBSD.org
Tue Apr 10 02:49:54 UTC 2018


Author: benno
Date: Tue Apr 10 02:49:53 2018
New Revision: 332346
URL: https://svnweb.freebsd.org/changeset/base/332346

Log:
  Fix the position of $bootable so that -o platformid=efi applies correctly.
  
  Sponsored by:	iXsystems, Inc.
  Pointy hat to:	benno (again)

Modified:
  head/release/amd64/mkisoimages.sh

Modified: head/release/amd64/mkisoimages.sh
==============================================================================
--- head/release/amd64/mkisoimages.sh	Tue Apr 10 02:43:07 2018	(r332345)
+++ head/release/amd64/mkisoimages.sh	Tue Apr 10 02:49:53 2018	(r332346)
@@ -38,7 +38,7 @@ if [ "$1" = "-b" ]; then
 	umount efi
 	rmdir efi
 	mdconfig -d -u $device
-	bootable="-o bootimage=i386;efiboot.img -o no-emul-boot $bootable -o platformid=efi"
+	bootable="-o bootimage=i386;efiboot.img -o no-emul-boot -o platformid=efi $bootable"
 	
 	shift
 else


More information about the svn-src-all mailing list