diff options
author | emaste <emaste@FreeBSD.org> | 2017-06-19 03:07:00 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2017-06-19 03:07:00 +0000 |
commit | a249b94418fc905d8e8ea4829e6071170bebd283 (patch) | |
tree | 89aa67fafa9885abf22509e2939b6bc4c016e441 /usr.sbin/bsdinstall/scripts | |
parent | b641a516f9e321f101e03134aec14efca25bc07c (diff) | |
download | FreeBSD-src-a249b94418fc905d8e8ea4829e6071170bebd283.zip FreeBSD-src-a249b94418fc905d8e8ea4829e6071170bebd283.tar.gz |
bsdinstall: use consistent EFI configuration across platforms
MFC r320007:
- increase arm64 EFI partition to 200M, as x86
- use EFI_BOOTPART_SIZE and EFI_BOOTPART_PATH macros on x86
- increase ZFS EFI partition to 200M
MFC r320008: bsdinstall: correct comment after r320007
PR: 201898
Approved by: re (kib)
Relnotes: Yes
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'usr.sbin/bsdinstall/scripts')
-rwxr-xr-x | usr.sbin/bsdinstall/scripts/zfsboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bsdinstall/scripts/zfsboot b/usr.sbin/bsdinstall/scripts/zfsboot index 12bf161..36b136c 100755 --- a/usr.sbin/bsdinstall/scripts/zfsboot +++ b/usr.sbin/bsdinstall/scripts/zfsboot @@ -848,7 +848,7 @@ zfs_create_diskpart() f_eval_catch $funcname gpart \ "$GPART_ADD_ALIGN_LABEL_WITH_SIZE" \ - "$align_small" efiboot$index efi 800k $disk || + "$align_small" efiboot$index efi 200M $disk || return $FAILURE f_eval_catch $funcname gpart "$GPART_BOOTCODE_PARTONLY" \ /boot/boot1.efifat 1 $disk || |