summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-09-22 21:32:07 +0000
committerJeremy Katz <katzj@redhat.com>2003-09-22 21:32:07 +0000
commit2f4c5beceab4f2006dacc8791899e0f90972dbb4 (patch)
tree65de95ade30a89d6a55050aeedd2b19b828fe949 /iw
parenta8f73039a45fff0de6df0300157a22fac623486c (diff)
downloadanaconda-2f4c5beceab4f2006dacc8791899e0f90972dbb4.tar.gz
anaconda-2f4c5beceab4f2006dacc8791899e0f90972dbb4.tar.xz
anaconda-2f4c5beceab4f2006dacc8791899e0f90972dbb4.zip
bye bye lilo
Diffstat (limited to 'iw')
-rw-r--r--iw/bootloader_main_gui.py4
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)