summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-03-23 22:16:35 -0500
committerDavid Lehman <dlehman@redhat.com>2009-03-23 22:17:17 -0500
commitfaee0d96c7a213acfa4edcba198ad4a398110282 (patch)
tree2ae039ceea6a481ae3ccec84df2fb1dd6b16bd6a /iw
parent3b1206629309d766fc25d529ae3145c9532c8977 (diff)
downloadanaconda-faee0d96c7a213acfa4edcba198ad4a398110282.tar.gz
anaconda-faee0d96c7a213acfa4edcba198ad4a398110282.tar.xz
anaconda-faee0d96c7a213acfa4edcba198ad4a398110282.zip
Add EFI, Apple Bootstrap, and PPC PReP Boot formats.
Diffstat (limited to 'iw')
-rw-r--r--iw/lvm_dialog_gui.py2
-rw-r--r--iw/partition_ui_helpers_gui.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/iw/lvm_dialog_gui.py b/iw/lvm_dialog_gui.py
index 5b07b5807..5bb073213 100644
--- a/iw/lvm_dialog_gui.py
+++ b/iw/lvm_dialog_gui.py
@@ -417,7 +417,7 @@ class VolumeGroupEditor:
newfstypeCombo = createFSTypeMenu(format,
fstypechangeCB,
mountCombo,
- ignorefs = ["software RAID", "physical volume (LVM)", "vfat", "PPC PReP Boot", "hfs"])
+ ignorefs = ["software RAID", "physical volume (LVM)", "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/partition_ui_helpers_gui.py b/iw/partition_ui_helpers_gui.py
index 5cd75c20a..fb311df44 100644
--- a/iw/partition_ui_helpers_gui.py
+++ b/iw/partition_ui_helpers_gui.py
@@ -229,7 +229,7 @@ def createFSTypeMenu(format, fstypechangeCB, mountCombo,
def mountptchangeCB(widget, fstypecombo):
if iutil.isEfi() and widget.get_children()[0].get_text() == "/boot/efi":
- fstypecombo.set_active_text("efi")
+ fstypecombo.set_active_text(getFormat("efi").name)
if widget.get_children()[0].get_text() == "/boot":
fstypecombo.set_active_text(get_default_filesystem_type(boot=True))