From 2f4c5beceab4f2006dacc8791899e0f90972dbb4 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Mon, 22 Sep 2003 21:32:07 +0000 Subject: bye bye lilo --- iw/bootloader_main_gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'iw') 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) -- cgit