Date: Wed, 13 Jan 2016 14:47:14 +0000 (UTC) From: Steven Hartland <smh@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r293831 - head/release/amd64 Message-ID: <201601131447.u0DElEfG091765@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601131447.u0DElEfG091765>