summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bsdinstall
diff options
context:
space:
mode:
authoremaste <emaste@FreeBSD.org>2016-06-23 18:04:48 +0000
committeremaste <emaste@FreeBSD.org>2016-06-23 18:04:48 +0000
commit9ac5e0548491e54a113c9ba7aa5f83134a64bfeb (patch)
tree598e8ffeb46b259ad627ba36322785f8dd2ec48b /usr.sbin/bsdinstall
parentc611d1d7b77f499814d8f6e6dadb594600c737db (diff)
downloadFreeBSD-src-9ac5e0548491e54a113c9ba7aa5f83134a64bfeb.zip
FreeBSD-src-9ac5e0548491e54a113c9ba7aa5f83134a64bfeb.tar.gz
bsdinstall: increase EFI partition size to 200MB
A larger EFI file system size will facilitate multi-boot configurations and the installation other EFI applications like firmware update tools. 200MB matches OS X. Note that this changes only the partition size, not the file system that bsdinstall places there. We need to do both, but as the partition size is difficult to adjust later make this change for now so that at least systems installed with FreeBSD 11.0 have a partition layout with room to grow. Reviewed by: allanjude, imp Approved by: re (gjb) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D6935
Diffstat (limited to 'usr.sbin/bsdinstall')
-rw-r--r--usr.sbin/bsdinstall/partedit/partedit_x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bsdinstall/partedit/partedit_x86.c b/usr.sbin/bsdinstall/partedit/partedit_x86.c
index 6a60678..5616e58 100644
--- a/usr.sbin/bsdinstall/partedit/partedit_x86.c
+++ b/usr.sbin/bsdinstall/partedit/partedit_x86.c
@@ -99,7 +99,7 @@ bootpart_size(const char *scheme)
if (strcmp(x86_bootmethod(), "BIOS") == 0)
return (512*1024);
else
- return (800*1024);
+ return (200*1024*1024);
return (0);
}
OpenPOWER on IntegriCloud