From 65f14f4912a3710e3ff62e083a0d694bf1fa57d1 Mon Sep 17 00:00:00 2001 From: Tomasz Sterna Date: Wed, 2 Mar 2011 16:16:09 +0100 Subject: [PATCH] Use defaultBootFSType for /boot partition --- installclass.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/installclass.py b/installclass.py index ea8a901..bcf03e4 100644 --- a/installclass.py +++ b/installclass.py @@ -176,9 +176,8 @@ class BaseInstallClass(object): return AnacondaBackend def setDefaultPartitioning(self, storage, platform): - autorequests = [PartSpec(mountpoint="/boot", fstype=storage.defaultFSType, - size=512, maxSize=2*1024, grow=True, - asVol=True), + autorequests = [PartSpec(mountpoint="/boot", fstype=storage.defaultBootFSType, + size=512, maxSize=2*1024, grow=False, asVol=False), PartSpec(mountpoint="/", fstype=storage.defaultFSType, size=1024, grow=True, asVol=True, requiredSpace=50*1024)]