diff options
author | Peter Jones <pjones@redhat.com> | 2005-02-21 01:56:13 +0000 |
---|---|---|
committer | Peter Jones <pjones@redhat.com> | 2005-02-21 01:56:13 +0000 |
commit | e6e5d7da11b658ad6cf506bc4b648fb5945b2bed (patch) | |
tree | e4a954f35f20967d7ca0f4f0bff2eff817aa3f01 /iw | |
parent | d6184c707a14cd28b82694a42844d9958e0e64fe (diff) | |
download | anaconda-e6e5d7da11b658ad6cf506bc4b648fb5945b2bed.tar.gz anaconda-e6e5d7da11b658ad6cf506bc4b648fb5945b2bed.tar.xz anaconda-e6e5d7da11b658ad6cf506bc4b648fb5945b2bed.zip |
No longer use lilo.
Diffstat (limited to 'iw')
-rw-r--r-- | iw/bootloader_main_gui.py | 15 | ||||
-rw-r--r-- | iw/bootlocwidget.py | 10 |
2 files changed, 0 insertions, 25 deletions
diff --git a/iw/bootloader_main_gui.py b/iw/bootloader_main_gui.py index 27490fd76..a80e9a62b 100644 --- a/iw/bootloader_main_gui.py +++ b/iw/bootloader_main_gui.py @@ -99,9 +99,6 @@ class MainBootloaderWindow(InstallWindow): if newrc != 1: continue blname = None - elif ((self.lilo_radio is not None) - and (self.lilo_radio.get_active() == gtk.TRUE)): - blname = "LILO" else: blname = "GRUB" break @@ -130,12 +127,6 @@ class MainBootloaderWindow(InstallWindow): self.grub_radio = gtk.RadioButton(None, (_("Use _GRUB as the " "boot loader"))) - if bootloader.showLilo: - self.lilo_radio = gtk.RadioButton(self.grub_radio, - (_("Use _LILO as the boot " - "loader"))) - else: - self.lilo_radio = None self.none_radio = gtk.RadioButton(self.grub_radio, (_("_Do not " "install a " "boot loader"))) @@ -143,14 +134,10 @@ class MainBootloaderWindow(InstallWindow): radio_vbox.pack_start(label, gtk.FALSE) radio_vbox.pack_start(self.grub_radio, gtk.FALSE) - if self.lilo_radio: - radio_vbox.pack_start(self.lilo_radio, gtk.FALSE) radio_vbox.pack_start(self.none_radio, gtk.FALSE) if self.blname is None: self.none_radio.set_active(gtk.TRUE) - elif self.lilo_radio is not None and self.blname == "LILO" and iutil.getArch() == "i386": - self.lilo_radio.set_active(gtk.TRUE) else: self.grub_radio.set_active(gtk.TRUE) @@ -191,8 +178,6 @@ class MainBootloaderWindow(InstallWindow): if self.bl.useGrub(): self.blname = "GRUB" - else: - self.blname = "LILO" # XXX this is kind of ugly if self.dispatch.stepInSkipList("instbootloader"): self.blname = None diff --git a/iw/bootlocwidget.py b/iw/bootlocwidget.py index 30a6a234d..acf85b616 100644 --- a/iw/bootlocwidget.py +++ b/iw/bootlocwidget.py @@ -79,16 +79,6 @@ class BootloaderLocationWidget: self.widget = alignment def editDriveOrder(self, *args): - # we only support this for grub - if not self.usingGrub: - self.intf.messageWindow(_("Unable to Change Drive Order for LILO"), - _("We do not support changing the " - "drive order for use with LILO."), - type="ok") - return - - - dialog = gtk.Dialog(_("Edit Drive Order"), flags = gtk.DIALOG_MODAL) gui.addFrame(dialog) dialog.set_modal(gtk.TRUE) |