summaryrefslogtreecommitdiffstats
path: root/autopart.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-10-03 16:45:59 +0000
committerJeremy Katz <katzj@redhat.com>2007-10-03 16:45:59 +0000
commitf06eb70364a2fa234cfe0d40232a668d15de6024 (patch)
treebebbf71189bc8e658321583b8977e002456fdaa4 /autopart.py
parent20df3f00223a15925c6dae443417fd4b5b87ff17 (diff)
downloadanaconda-f06eb70364a2fa234cfe0d40232a668d15de6024.tar.gz
anaconda-f06eb70364a2fa234cfe0d40232a668d15de6024.tar.xz
anaconda-f06eb70364a2fa234cfe0d40232a668d15de6024.zip
2007-10-03 Jeremy Katz <katzj@redhat.com>
* autopart.py (getAutopartitionBoot): Make boot partitions 200 megs
Diffstat (limited to 'autopart.py')
-rw-r--r--autopart.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/autopart.py b/autopart.py
index 6f7dd7bd6..c31008c24 100644
--- a/autopart.py
+++ b/autopart.py
@@ -1638,19 +1638,19 @@ def autoCreateLVMPartitionRequests(autoreq):
def getAutopartitionBoot():
"""Return the proper shorthand for the boot dir (arch dependent)."""
if rhpl.getArch() == "ia64":
- return [ ("/boot/efi", "vfat", 100, None, 0, 1, 0) ]
+ return [ ("/boot/efi", "vfat", 200, None, 0, 1, 0) ]
elif (iutil.getPPCMachine() == "pSeries"):
return [ (None, "PPC PReP Boot", 4, None, 0, 1, 0),
- ("/boot", None, 100, None, 0, 1, 0) ]
+ ("/boot", None, 200, None, 0, 1, 0) ]
elif (iutil.getPPCMachine() == "iSeries") and not iutil.hasiSeriesNativeStorage():
return [ (None, "PPC PReP Boot", 16, None, 0, 1, 0) ]
elif (iutil.getPPCMachine() == "iSeries") and iutil.hasiSeriesNativeStorage():
return []
elif (iutil.getPPCMachine() == "PMac") and iutil.getPPCMacGen() == "NewWorld":
return [ ( None, "Apple Bootstrap", 1, 1, 0, 1, 0),
- ("/boot", None, 100, None, 0, 1, 0) ]
+ ("/boot", None, 200, None, 0, 1, 0) ]
else:
- return [ ("/boot", None, 100, None, 0, 1, 0) ]
+ return [ ("/boot", None, 200, None, 0, 1, 0) ]
def queryAutoPartitionOK(anaconda):
type = anaconda.id.partitions.autoClearPartType