summaryrefslogtreecommitdiffstats
path: root/partRequests.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-04-24 15:46:31 +0000
committerJeremy Katz <katzj@redhat.com>2003-04-24 15:46:31 +0000
commit0a562126d84c59a113231ae7ab38984f92d62153 (patch)
tree5e87b9094f4ebdc328979e3a0640dee5f1fc40cb /partRequests.py
parentdd200d781bd9012f562399c2ee69c23fe60d86b9 (diff)
downloadanaconda-0a562126d84c59a113231ae7ab38984f92d62153.tar.gz
anaconda-0a562126d84c59a113231ae7ab38984f92d62153.tar.xz
anaconda-0a562126d84c59a113231ae7ab38984f92d62153.zip
another taroon merge. tagged before as before-taroon-merge, after as
after-taroon-merge this one adds s390 fixes, basic i/p series platform support, support for multiple kernels and one second stage, cmdline kickstart mode (nice for s390), some warning cleanups.
Diffstat (limited to 'partRequests.py')
-rw-r--r--partRequests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/partRequests.py b/partRequests.py
index 9870babaf..680588408 100644
--- a/partRequests.py
+++ b/partRequests.py
@@ -630,8 +630,8 @@ class RaidRequestSpec(RequestSpec):
bootreq = partitions.getBootableRequest()
if not bootreq and self.mountpoint:
# XXX 390 can't have boot on raid
- if ((self.mountpoint == "/boot" or self.mountpoint == "/")
- and not raid.isRaid1(self.raidlevel)):
+ if (self.mountpoint in partitions.getBootableMountpoints()
+ and not raid.isRaid1(self.raidlevel)):
return _("Bootable partitions can only be on RAID1 devices.")
minmembers = raid.get_raid_min_members(self.raidlevel)