summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2008-03-14 16:04:03 -0400
committerPeter Jones <pjones@pjones2.localdomain>2008-03-14 16:04:03 -0400
commit8b663e83048e5b44627f121ea4c08e3cb23198c2 (patch)
tree2eb1cff147704a9b2e3bd7d29a3335135c0c3dea /iw
parent4fc7477a61e00c133275b9d24b431687a58b7338 (diff)
downloadanaconda-8b663e83048e5b44627f121ea4c08e3cb23198c2.tar.gz
anaconda-8b663e83048e5b44627f121ea4c08e3cb23198c2.tar.xz
anaconda-8b663e83048e5b44627f121ea4c08e3cb23198c2.zip
Add efi to the ignoreable filesystem list.
Diffstat (limited to 'iw')
-rw-r--r--iw/lvm_dialog_gui.py2
-rw-r--r--iw/raid_dialog_gui.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/iw/lvm_dialog_gui.py b/iw/lvm_dialog_gui.py
index 0c2f1f34b..750258761 100644
--- a/iw/lvm_dialog_gui.py
+++ b/iw/lvm_dialog_gui.py
@@ -403,7 +403,7 @@ class VolumeGroupEditor:
newfstypeCombo = createFSTypeMenu(logrequest.fstype,
fstypechangeCB,
mountCombo,
- ignorefs = ["software RAID", "physical volume (LVM)", "vfat", "PPC PReP Boot", "Apple Bootstrap"])
+ ignorefs = ["software RAID", "physical volume (LVM)", "vfat", "efi", "PPC PReP Boot", "Apple Bootstrap"])
lbl.set_mnemonic_widget(newfstypeCombo)
maintable.attach(newfstypeCombo, 1, 2, row, row + 1)
row += 1
diff --git a/iw/raid_dialog_gui.py b/iw/raid_dialog_gui.py
index 1499d2298..a30624ed7 100644
--- a/iw/raid_dialog_gui.py
+++ b/iw/raid_dialog_gui.py
@@ -336,7 +336,7 @@ class RaidEditor:
self.fstypeCombo = createFSTypeMenu(origrequest.fstype,
fstypechangeCB,
self.mountCombo,
- ignorefs = ["software RAID", "PPC PReP Boot", "Apple Bootstrap"])
+ ignorefs = ["software RAID", "efi", "PPC PReP Boot", "Apple Bootstrap"])
lbl.set_mnemonic_widget(self.fstypeCombo)
maintable.attach(self.fstypeCombo, 1, 2, row, row + 1)
row += 1