svn commit: r194953 - head/usr.sbin/sysinstall

John Baldwin jhb at FreeBSD.org
Thu Jun 25 12:34:07 UTC 2009


Author: jhb
Date: Thu Jun 25 12:34:05 2009
New Revision: 194953
URL: http://svn.freebsd.org/changeset/base/194953

Log:
  Raise the default size of the EFI partition on ia64 from 100MB to 400MB.
  A fresh install of a current 8.0 snapshot uses 156MB with a single kernel
  and having the filesystem too small prevented the system from booting.
  
  Reviewed by:	marcel
  MFC after:	1 week

Modified:
  head/usr.sbin/sysinstall/label.c

Modified: head/usr.sbin/sysinstall/label.c
==============================================================================
--- head/usr.sbin/sysinstall/label.c	Thu Jun 25 12:21:49 2009	(r194952)
+++ head/usr.sbin/sysinstall/label.c	Thu Jun 25 12:34:05 2009	(r194953)
@@ -1389,7 +1389,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-head mailing list