diff options
author | smh <smh@FreeBSD.org> | 2016-01-13 14:47:13 +0000 |
---|---|---|
committer | smh <smh@FreeBSD.org> | 2016-01-13 14:47:13 +0000 |
commit | a5374736080aa34caf5246a38d92b5fd4c3d4d4f (patch) | |
tree | 58618746c066f9a9b0f5bdc85752200a810a8437 | |
parent | dc94e24d2bb0ec269330a1e5ee6f786039b5fd04 (diff) | |
download | FreeBSD-src-a5374736080aa34caf5246a38d92b5fd4c3d4d4f.zip FreeBSD-src-a5374736080aa34caf5246a38d92b5fd4c3d4d4f.tar.gz |
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
-rw-r--r-- | release/amd64/mkisoimages.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/amd64/mkisoimages.sh b/release/amd64/mkisoimages.sh index f72dd9e..153f31f6 100644 --- a/release/amd64/mkisoimages.sh +++ b/release/amd64/mkisoimages.sh @@ -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 |