svn commit: r294980 - stable/10/release/amd64

Steven Hartland smh at FreeBSD.org
Thu Jan 28 12:03:31 UTC 2016


Author: smh
Date: Thu Jan 28 12:03:30 2016
New Revision: 294980
URL: https://svnweb.freebsd.org/changeset/base/294980

Log:
  MFC r293831:
  
  Increase efiboot.img size used in ISO creation
  
  This changes mkisoimages-uefi.sh instead of mkisoimages.sh in r293831 due to
  refactor not MFC'ed.
  
  Sponsored by:	Multiplay

Modified:
  stable/10/release/amd64/mkisoimages-uefi.sh
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/release/amd64/mkisoimages-uefi.sh
==============================================================================
--- stable/10/release/amd64/mkisoimages-uefi.sh	Thu Jan 28 12:00:17 2016	(r294979)
+++ stable/10/release/amd64/mkisoimages-uefi.sh	Thu Jan 28 12:03:30 2016	(r294980)
@@ -28,7 +28,7 @@ if [ "x$1" = "x-b" ]; then
 	bootable="-o bootimage=i386;$4/boot/cdboot -o no-emul-boot"
 
 	# Make EFI system partition (should be done with makefs in the future)
-	dd if=/dev/zero of=efiboot.img bs=4k count=100
+	dd if=/dev/zero of=efiboot.img bs=4k count=200
 	device=`mdconfig -a -t vnode -f efiboot.img`
 	newfs_msdos -F 12 -m 0xf8 /dev/$device
 	mkdir efi


More information about the svn-src-all mailing list