svn commit: r195682 - stable/7/usr.sbin/sysinstall

John Baldwin jhb at FreeBSD.org
Tue Jul 14 15:31:00 UTC 2009


Author: jhb
Date: Tue Jul 14 15:30:59 2009
New Revision: 195682
URL: http://svn.freebsd.org/changeset/base/195682

Log:
  MFC: Raise the default size of the EFI partition on ia64 from 100MB to
  400MB.

Modified:
  stable/7/usr.sbin/sysinstall/   (props changed)
  stable/7/usr.sbin/sysinstall/label.c

Modified: stable/7/usr.sbin/sysinstall/label.c
==============================================================================
--- stable/7/usr.sbin/sysinstall/label.c	Tue Jul 14 15:16:39 2009	(r195681)
+++ stable/7/usr.sbin/sysinstall/label.c	Tue Jul 14 15:30:59 2009	(r195682)
@@ -1410,7 +1410,7 @@ try_auto_label(Device **devs, Device *de
 #ifdef __ia64__
     AutoEfi = NULL;
     if (EfiChunk == NULL) {
-	sz = 100 * ONE_MEG;
+	sz = 400 * ONE_MEG;
 	AutoEfi = Create_Chunk_DWIM(label_chunk_info[here].c->disk,
 	    label_chunk_info[here].c, sz, efi, 0, 0);
 	if (AutoEfi == NULL) {


More information about the svn-src-all mailing list