Bump the ISO EFI partition size from 1024 to 2048, following r366732.

Suggested by:	imp
Sponsored by:	Rubicon Communications, LLC (netgate.com)
This commit is contained in:
Glen Barber 2020-10-15 23:05:13 +00:00
parent ce4900bc8a
commit bdccfea1ea
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=366738
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ if [ "$1" = "-b" ]; then
# Make EFI system partition.
espfilename=$(mktemp /tmp/efiboot.XXXXXX)
# ESP file size in KB.
espsize="1024"
espsize="2048"
make_esp_file ${espfilename} ${espsize} ${BASEBITSDIR}/boot/loader.efi
bootable="$bootable -o bootimage=i386;${espfilename} -o no-emul-boot -o platformid=efi"

View File

@ -42,7 +42,7 @@ if [ "$1" = "-b" ]; then
# Make an EFI system partition.
espfilename=$(mktemp /tmp/efiboot.XXXXXX)
# ESP file size in KB.
espsize="1024"
espsize="2048"
make_esp_file ${espfilename} ${espsize} ${BASEBITSDIR}/boot/loader.efi
bootable="-o bootimage=efi;${espfilename} -o no-emul-boot -o platformid=efi"