diff options
author | Peter Jones <pjones@redhat.com> | 2005-02-23 23:15:45 +0000 |
---|---|---|
committer | Peter Jones <pjones@redhat.com> | 2005-02-23 23:15:45 +0000 |
commit | 63402e5aac443c40c527edefd5792af8244edbdb (patch) | |
tree | e85ea1ee280604e38bdf2fb79a1ebf7fae372145 /textw | |
parent | 2710bbf343343102315e62812fb83b109012afab (diff) | |
download | anaconda-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.py | 4 |
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() |