summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-09-12 18:54:38 +0000
committerJeremy Katz <katzj@redhat.com>2003-09-12 18:54:38 +0000
commit5da077a4b897814b7f1dd1d5f862e323a577a06c (patch)
treef2c5800a3002fe95d930995c79a718630e21f091
parente5211fb5f4792a13ce7c5894262afad9da16c1af (diff)
downloadanaconda-5da077a4b897814b7f1dd1d5f862e323a577a06c.tar.gz
anaconda-5da077a4b897814b7f1dd1d5f862e323a577a06c.tar.xz
anaconda-5da077a4b897814b7f1dd1d5f862e323a577a06c.zip
don't allow putting ppc prep boot on raid or lvm (#104330)
-rw-r--r--iw/lvm_dialog_gui.py2
-rw-r--r--iw/raid_dialog_gui.py2
-rw-r--r--textw/partition_text.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/iw/lvm_dialog_gui.py b/iw/lvm_dialog_gui.py
index 877f56d0f..99f895441 100644
--- a/iw/lvm_dialog_gui.py
+++ b/iw/lvm_dialog_gui.py
@@ -386,7 +386,7 @@ class VolumeGroupEditor:
(newfstype, newfstypeMenu) = createFSTypeMenu(logrequest.fstype,
fstypechangeCB,
mountCombo,
- ignorefs = ["software RAID", "physical volume (LVM)", "vfat"])
+ ignorefs = ["software RAID", "physical volume (LVM)", "vfat", "PPC PReP Boot"])
lbl.set_mnemonic_widget(newfstype)
else:
maintable.attach(createAlignedLabel(_("Original File System Type:")),
diff --git a/iw/raid_dialog_gui.py b/iw/raid_dialog_gui.py
index e7b0fd15b..6cd3c4736 100644
--- a/iw/raid_dialog_gui.py
+++ b/iw/raid_dialog_gui.py
@@ -306,7 +306,7 @@ class RaidEditor:
(self.fstypeoption, self.fstypeoptionMenu) = createFSTypeMenu(origrequest.fstype,
fstypechangeCB,
self.mountCombo,
- ignorefs = ["software RAID"])
+ ignorefs = ["software RAID", "PPC PReP Boot"])
lbl.set_mnemonic_widget(self.fstypeoption)
else:
if origrequest.fstype.getName():
diff --git a/textw/partition_text.py b/textw/partition_text.py
index 33363b3c5..4c5efb775 100644
--- a/textw/partition_text.py
+++ b/textw/partition_text.py
@@ -928,7 +928,7 @@ class PartitionWindow:
self.drivelist = None
else:
subgrid = Grid(2, 1)
- (fstype, fsgrid) = self.makeFsList(raidrequest, ignorefs = ["software RAID"])
+ (fstype, fsgrid) = self.makeFsList(raidrequest, ignorefs = ["software RAID", "PPC PReP Boot"])
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)