summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-05-19 21:34:02 +0000
committerJeremy Katz <katzj@redhat.com>2005-05-19 21:34:02 +0000
commit07cda6895fcfd9dc94de76d7d70ac8f855f25c2e (patch)
tree7959b40066f54827273fd2250522a0659daf607c /fsset.py
parentcbc4b83ae0fc8dcd1abd11b2e619399f56f59f33 (diff)
downloadanaconda-07cda6895fcfd9dc94de76d7d70ac8f855f25c2e.tar.gz
anaconda-07cda6895fcfd9dc94de76d7d70ac8f855f25c2e.tar.xz
anaconda-07cda6895fcfd9dc94de76d7d70ac8f855f25c2e.zip
2005-05-19 Jeremy Katz <katzj@redhat.com>
* fsset.py (prepbootFileSystem.__init__): PReP partitions should be marked bootable, from Dustin Kirkland. * raid.py (availRaidLevels): Allow ppc to have a RAID /boot, from Dustin Kirkland. * partitions.py (Partitions.getBootableRequest): Split PMac/pSeries handling to be different. pSeries can do bootable PReP. Patch from Dustin Kirkland <dustin.kirkland@us.ibm.com>
Diffstat (limited to 'fsset.py')
-rw-r--r--fsset.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/fsset.py b/fsset.py
index c5b4c13f9..4ef57fe3b 100644
--- a/fsset.py
+++ b/fsset.py
@@ -852,6 +852,7 @@ class prepbootFileSystem(FileSystemType):
def __init__(self):
FileSystemType.__init__(self)
self.partedFileSystemType = None
+ self.partedPartitionFlags = [ parted.PARTITION_BOOT ]
self.checked = 0
self.name = "PPC PReP Boot"
self.maxSizeMB = 10
@@ -1210,7 +1211,7 @@ MAILADDR root
f.close()
- # return the "boot" devicce
+ # return the "boot" device
def getBootDev(self):
mntDict = {}
bootDev = None