summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-07-06 19:03:20 +0000
committerMike Fulbright <msf@redhat.com>2001-07-06 19:03:20 +0000
commit39927c9a5c79639fb2b78e80930dc6c8ce12edfb (patch)
treeb300c125363e43d35681cf5ef4cc299357af7f9c /iw
parent8ebfcfdd7c8cebecd5c81c8e64c3b81d73b5c8b4 (diff)
downloadanaconda-39927c9a5c79639fb2b78e80930dc6c8ce12edfb.tar.gz
anaconda-39927c9a5c79639fb2b78e80930dc6c8ce12edfb.tar.xz
anaconda-39927c9a5c79639fb2b78e80930dc6c8ce12edfb.zip
remove create boot disk question
Diffstat (limited to 'iw')
-rw-r--r--iw/bootloader_gui.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/iw/bootloader_gui.py b/iw/bootloader_gui.py
index 44bf6899c..ca1acd24d 100644
--- a/iw/bootloader_gui.py
+++ b/iw/bootloader_gui.py
@@ -27,7 +27,6 @@ class BootloaderWindow (InstallWindow):
def getPrev (self):
# avoid coming back in here if the user backs past and then tries
# to skip this screen
- #self.bootdisk = None
pass
# XXX
@@ -50,13 +49,6 @@ class BootloaderWindow (InstallWindow):
#sys.exit(0)
def getNext (self):
- if not self.bootdisk: return None
-
- if self.bootdisk.get_active ():
- self.dispatch.skipStep("bootdisk", skip = 0)
- else:
- self.dispatch.skipStep("bootdisk")
-
if not self.bootloader.get_active ():
self.dispatch.skipStep("instbootloader")
elif len(self.bootDevice.keys()) > 0:
@@ -314,11 +306,6 @@ class BootloaderWindow (InstallWindow):
optionBox = GtkVBox (FALSE, 5)
optionBox.set_border_width (5)
- self.bootdisk = GtkCheckButton (_("Create Boot Disk"))
-
- self.bootdisk.set_active(not dispatch.stepInSkipList("bootdisk"))
-
- optionBox.pack_start (self.bootdisk)
self.bootloader = GtkCheckButton (_("Install Boot Loader"))