Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Jun 2016 18:04:48 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r302145 - head/usr.sbin/bsdinstall/partedit
Message-ID:  <201606231804.u5NI4mEb072083@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Thu Jun 23 18:04:48 2016
New Revision: 302145
URL: https://svnweb.freebsd.org/changeset/base/302145

Log:
  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

Modified:
  head/usr.sbin/bsdinstall/partedit/partedit_x86.c

Modified: head/usr.sbin/bsdinstall/partedit/partedit_x86.c
==============================================================================
--- head/usr.sbin/bsdinstall/partedit/partedit_x86.c	Thu Jun 23 16:37:43 2016	(r302144)
+++ head/usr.sbin/bsdinstall/partedit/partedit_x86.c	Thu Jun 23 18:04:48 2016	(r302145)
@@ -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);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606231804.u5NI4mEb072083>