summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorAles Kozumplik <akozumpl@redhat.com>2010-05-13 13:42:36 +0200
committerAles Kozumplik <akozumpl@redhat.com>2010-05-14 13:18:54 +0200
commit9ce562e659abfebdd6154b871b58e4f4fbc67bc7 (patch)
treec2bc2f48d23e1c338d3cd2e0278dcbe4dd36911d /iw
parent0b78931bd668d1dfeb9e6f13a8b87b744bc579b6 (diff)
downloadanaconda-9ce562e659abfebdd6154b871b58e4f4fbc67bc7.tar.gz
anaconda-9ce562e659abfebdd6154b871b58e4f4fbc67bc7.tar.xz
anaconda-9ce562e659abfebdd6154b871b58e4f4fbc67bc7.zip
logging: remove references to the 'bootloaderadvanced' step.
originally removed in 2008 by 7ad65d9e30fd21d8c0356dc998ea97c579a73d53.
Diffstat (limited to 'iw')
-rw-r--r--iw/autopart_type.py1
-rw-r--r--iw/upgrade_bootloader_gui.py3
2 files changed, 0 insertions, 4 deletions
diff --git a/iw/autopart_type.py b/iw/autopart_type.py
index 2ba107530..4a6a643f8 100644
--- a/iw/autopart_type.py
+++ b/iw/autopart_type.py
@@ -189,7 +189,6 @@ class PartitionTypeWindow(InstallWindow):
else:
self.dispatch.skipStep("partition")
self.dispatch.skipStep("bootloader")
- self.dispatch.skipStep("bootloaderadvanced")
return None
diff --git a/iw/upgrade_bootloader_gui.py b/iw/upgrade_bootloader_gui.py
index caaf2f38a..2597a53ac 100644
--- a/iw/upgrade_bootloader_gui.py
+++ b/iw/upgrade_bootloader_gui.py
@@ -43,18 +43,15 @@ class UpgradeBootloaderWindow (InstallWindow):
if self.nobl_radio.get_active():
self.dispatch.skipStep("bootloadersetup", skip = 1)
self.dispatch.skipStep("bootloader", skip = 1)
- self.dispatch.skipStep("bootloaderadvanced", skip = 1)
self.dispatch.skipStep("instbootloader", skip = 1)
elif self.newbl_radio.get_active():
self.dispatch.skipStep("bootloadersetup", skip = 0)
self.dispatch.skipStep("bootloader", skip = 0)
- self.dispatch.skipStep("bootloaderadvanced", skip = 0)
self.dispatch.skipStep("instbootloader", skip = 0)
self.bl.doUpgradeOnly = 0
else:
self.dispatch.skipStep("bootloadersetup", skip = 0)
self.dispatch.skipStep("bootloader", skip = 1)
- self.dispatch.skipStep("bootloaderadvanced", skip = 1)
self.dispatch.skipStep("instbootloader", skip = 0)
self.bl.doUpgradeOnly = 1