summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2005-02-23 23:15:45 +0000
committerPeter Jones <pjones@redhat.com>2005-02-23 23:15:45 +0000
commit63402e5aac443c40c527edefd5792af8244edbdb (patch)
treee85ea1ee280604e38bdf2fb79a1ebf7fae372145 /textw
parent2710bbf343343102315e62812fb83b109012afab (diff)
downloadanaconda-63402e5aac443c40c527edefd5792af8244edbdb.tar.gz
anaconda-63402e5aac443c40c527edefd5792af8244edbdb.tar.xz
anaconda-63402e5aac443c40c527edefd5792af8244edbdb.zip
put the apple bootloader stuff in the kickstart list, and remove it from
the raid and lvm possibilities early on
Diffstat (limited to 'textw')
-rw-r--r--textw/partition_text.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py
index 25052c5d0..8dcdce89b 100644
--- a/textw/partition_text.py
+++ b/textw/partition_text.py
@@ -985,7 +985,7 @@ class PartitionWindow:
self.drivelist = None
else:
subgrid = Grid(2, 1)
- (fstype, fsgrid) = self.makeFsList(raidrequest, ignorefs = ["software RAID", "PPC PReP Boot"])
+ (fstype, fsgrid) = self.makeFsList(raidrequest, ignorefs = ["software RAID", "PPC PReP Boot", "Apple Bootstrap"])
subgrid.setField(fsgrid, 0, 0, anchorLeft = 1, anchorTop=1)
(raidtype, raidgrid) = self.makeRaidList(raidrequest)
subgrid.setField(raidgrid, 1, 0, (2,0,0,0), anchorRight=1, anchorTop=1)
@@ -1164,7 +1164,7 @@ class PartitionWindow:
self.drivelist = None
else:
subgrid = Grid(2, 1)
- (fstype, fsgrid) = self.makeFsList(lvrequest, ignorefs = ["software RAID", "PPC PReP Boot"])
+ (fstype, fsgrid) = self.makeFsList(lvrequest, ignorefs = ["software RAID", "PPC PReP Boot", "Apple Bootstrap"])
subgrid.setField(fsgrid, 0, 0, anchorLeft = 1, anchorTop=1)
vgs = self.partitions.getLVMVGRequests()