From 9a27798fa1cde67ed249d166ee358fee1a684179 Mon Sep 17 00:00:00 2001 From: jhb Date: Thu, 25 Jun 2009 12:34:05 +0000 Subject: 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 --- usr.sbin/sysinstall/label.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin') diff --git a/usr.sbin/sysinstall/label.c b/usr.sbin/sysinstall/label.c index 08690f6..ff1ec48 100644 --- a/usr.sbin/sysinstall/label.c +++ b/usr.sbin/sysinstall/label.c @@ -1389,7 +1389,7 @@ try_auto_label(Device **devs, Device *dev, int perc, int *req) #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) { -- cgit v1.1