diff --git a/pyanaconda/iw/filter_gui.py b/pyanaconda/iw/filter_gui.py
index 6484fb4..560d7e4 100644
--- a/pyanaconda/iw/filter_gui.py
+++ b/pyanaconda/iw/filter_gui.py
@@ -536,20 +536,17 @@ class FilterWindow(InstallWindow):
for line in self.store:
line[VISIBLE_COL] = self.pages[page_num].cb.isMember(line[OBJECT_COL])
@@ -600,22 +597,9 @@ class FilterWindow(InstallWindow):
(raids, nonraids) = self.split_list(lambda d: isRAID(d) and not isCCISS(d),
singlepaths)
- if anaconda.simpleFilter:
- # In the typical use case, the user likely only has one drive and
- # there's no point showing either the filtering UI or the
- # cleardisks UI. Unfortunately, that means we need to duplicate
- # some of the getNext method.
- if len(singlepaths) == 1:
- anaconda.storage.exclusiveDisks = [udev_device_get_name(singlepaths[0])]
- return None
-
- self.pages = [self._makeBasic()]
- self.notebook.set_show_border(False)
- self.notebook.set_show_tabs(False)
- else:
- self.pages = [self._makeBasic(), self._makeRAID(),
- self._makeMPath(), self._makeOther(),
- self._makeSearch()]
+ self.pages = [self._makeBasic(), self._makeRAID(),
+ self._makeMPath(), self._makeOther(),
+ self._makeSearch()]
self.populate(nonraids, mpaths, raids)
diff --git a/pyanaconda/iw/filter_type.py b/pyanaconda/iw/filter_type.py
index 940de7e..2b4e5d9 100644
--- a/pyanaconda/iw/filter_type.py
+++ b/pyanaconda/iw/filter_type.py
@@ -65,9 +65,10 @@ class FilterTypeWindow(InstallWindow):
"probably it."))
self.buttonGroup.addEntry("complex", _("Specialized Storage Devices"),
descr=_("Installs or upgrades to devices such as "
- "Storage Area Networks (SANs) or mainframe "
- "attached disks (DASD), usually in an "
- "enterprise environment"))
+ "Storage Area Networks (SANs). This option "
+ "will allow you to add FCoE / iSCSI / zFCP "
+ "disks and to filter out LUNs the "
+ "installer should ignore."))