summaryrefslogtreecommitdiffstats
path: root/platform.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-12-11 15:50:05 -0500
committerChris Lumens <clumens@redhat.com>2009-12-11 15:50:41 -0500
commit3ebabfdcd9c5a61bf8afe57a7ae1e75ad6889b30 (patch)
treedafa9127b00d9fb4b0779ec878b9dd20b4d3f7de /platform.py
parent10a5fb5283b54fa755348f5670319ed43491afef (diff)
downloadanaconda-3ebabfdcd9c5a61bf8afe57a7ae1e75ad6889b30.tar.gz
anaconda-3ebabfdcd9c5a61bf8afe57a7ae1e75ad6889b30.tar.xz
anaconda-3ebabfdcd9c5a61bf8afe57a7ae1e75ad6889b30.zip
Default /boot to 500 MB.
Now you've got lots of room for lots of kernels and lots of gigantic initrds and probably a couple install.imgs too.
Diffstat (limited to 'platform.py')
-rw-r--r--platform.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform.py b/platform.py
index 49ef744d8..49f3fbf9d 100644
--- a/platform.py
+++ b/platform.py
@@ -158,7 +158,7 @@ class Platform(object):
def setDefaultPartitioning(self):
"""Return the default platform-specific partitioning information."""
- return [PartSpec(mountpoint="/boot", fstype=self.defaultBootFSType, size=250,
+ return [PartSpec(mountpoint="/boot", fstype=self.defaultBootFSType, size=500,
weight=self.weight(mountpoint="/boot"))]
@property