diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-09-22 21:32:07 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-09-22 21:32:07 +0000 |
commit | 2f4c5beceab4f2006dacc8791899e0f90972dbb4 (patch) | |
tree | 65de95ade30a89d6a55050aeedd2b19b828fe949 /iw | |
parent | a8f73039a45fff0de6df0300157a22fac623486c (diff) | |
download | anaconda-2f4c5beceab4f2006dacc8791899e0f90972dbb4.tar.gz anaconda-2f4c5beceab4f2006dacc8791899e0f90972dbb4.tar.xz anaconda-2f4c5beceab4f2006dacc8791899e0f90972dbb4.zip |
bye bye lilo
Diffstat (limited to 'iw')
-rw-r--r-- | iw/bootloader_main_gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/bootloader_main_gui.py b/iw/bootloader_main_gui.py index f0fdd249e..cac231757 100644 --- a/iw/bootloader_main_gui.py +++ b/iw/bootloader_main_gui.py @@ -137,7 +137,7 @@ class MainBootloaderWindow(InstallWindow): self.grub_radio = gtk.RadioButton(None, (_("Use _GRUB as the " "boot loader"))) - if iutil.getArch() == "i386": + if 0: self.lilo_radio = gtk.RadioButton(self.grub_radio, (_("Use _LILO as the boot " "loader"))) @@ -156,7 +156,7 @@ class MainBootloaderWindow(InstallWindow): if self.blname is None: self.none_radio.set_active(gtk.TRUE) - elif self.blname == "LILO" and iutil.getArch() == "i386": + elif 0 and self.blname == "LILO" and iutil.getArch() == "i386": self.lilo_radio.set_active(gtk.TRUE) else: self.grub_radio.set_active(gtk.TRUE) |