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
This commit is contained in:
John Baldwin 2009-06-25 12:34:05 +00:00
parent 2d9cfabad4
commit e68920db5f

View File

@ -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) {