svn commit: r293831 - head/release/amd64

Steven Hartland smh at FreeBSD.org
Wed Jan 13 14:47:15 UTC 2016


Author: smh
Date: Wed Jan 13 14:47:13 2016
New Revision: 293831
URL: https://svnweb.freebsd.org/changeset/base/293831

Log:
  Increase efiboot.img size used in ISO creation
  
  Due to recent and upcoming changes to add additional functionality to
  the EFI loader its now bigger than the space allocates for efiboot.img
  so increase this in line with boot1.efifat.
  
  MFC after:	2 weeks
  X-MFC-With:	r293268
  Sponsored by:	Multiplay

Modified:
  head/release/amd64/mkisoimages.sh

Modified: head/release/amd64/mkisoimages.sh
==============================================================================
--- head/release/amd64/mkisoimages.sh	Wed Jan 13 14:39:39 2016	(r293830)
+++ head/release/amd64/mkisoimages.sh	Wed Jan 13 14:47:13 2016	(r293831)
@@ -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