summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2008-03-04 15:43:05 -0500
committerPeter Jones <pjones@pjones2.localdomain>2008-03-04 15:43:05 -0500
commit8a6ea5447bf1b7a65d1c8882db9249094e1ec787 (patch)
tree86f4c66af938a48c22be05b46b3bd3de83af7fce /iw
parent582318f5dac11cf8bb9f4463bd3ffdae4c9eb220 (diff)
downloadanaconda-8a6ea5447bf1b7a65d1c8882db9249094e1ec787.tar.gz
anaconda-8a6ea5447bf1b7a65d1c8882db9249094e1ec787.tar.xz
anaconda-8a6ea5447bf1b7a65d1c8882db9249094e1ec787.zip
Use iutil.isEfi() instead of testing for ia64-ness.
Diffstat (limited to 'iw')
-rw-r--r--iw/partition_ui_helpers_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/partition_ui_helpers_gui.py b/iw/partition_ui_helpers_gui.py
index a68091c78..210c93902 100644
--- a/iw/partition_ui_helpers_gui.py
+++ b/iw/partition_ui_helpers_gui.py
@@ -215,7 +215,7 @@ def createFSTypeMenu(fstype, fstypechangeCB, mountCombo,
return fstypecombo
def mountptchangeCB(widget, fstypecombo):
- if rhpl.getArch() == "ia64" and widget.get_children()[0].get_text() == "/boot/efi":
+ if iutil.isEfi() and widget.get_children()[0].get_text() == "/boot/efi":
fstypecombo.set_active_text("vfat")
def resizeOptionCB(widget, resizesb):