From d1973e26e6cd530dabdadf32d4a3e847d7e74087 Mon Sep 17 00:00:00 2001 From: Tomasz Sterna Date: Tue, 25 Jan 2011 15:44:03 -0500 Subject: [PATCH] Use 512MB for /boot partition and rest for / partition --- installclass.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/installclass.py b/installclass.py index 6f8cefb..ea8a901 100644 --- a/installclass.py +++ b/installclass.py @@ -176,11 +176,11 @@ class BaseInstallClass(object): return AnacondaBackend def setDefaultPartitioning(self, storage, platform): - autorequests = [PartSpec(mountpoint="/", fstype=storage.defaultFSType, - size=1024, maxSize=50*1024, grow=True, + autorequests = [PartSpec(mountpoint="/boot", fstype=storage.defaultFSType, + size=512, maxSize=2*1024, grow=True, asVol=True), - PartSpec(mountpoint="/home", fstype=storage.defaultFSType, - size=100, grow=True, asVol=True, requiredSpace=50*1024)] + PartSpec(mountpoint="/", fstype=storage.defaultFSType, + size=1024, grow=True, asVol=True, requiredSpace=50*1024)] bootreq = platform.setDefaultPartitioning() if bootreq: