Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jun 2009 12:34:06 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r194953 - head/usr.sbin/sysinstall
Message-ID:  <200906251234.n5PCY6wb051137@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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) {



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