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 /textw | |
parent | a8f73039a45fff0de6df0300157a22fac623486c (diff) | |
download | anaconda-2f4c5beceab4f2006dacc8791899e0f90972dbb4.tar.gz anaconda-2f4c5beceab4f2006dacc8791899e0f90972dbb4.tar.xz anaconda-2f4c5beceab4f2006dacc8791899e0f90972dbb4.zip |
bye bye lilo
Diffstat (limited to 'textw')
-rw-r--r-- | textw/bootloader_text.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/textw/bootloader_text.py b/textw/bootloader_text.py index 6d103975b..d312e2a13 100644 --- a/textw/bootloader_text.py +++ b/textw/bootloader_text.py @@ -18,9 +18,6 @@ from flags import flags from rhpl.log import log import string import iutil -# XXX -#if iutil.getArch() == 'i386': -# import edd class BootloaderChoiceWindow: @@ -44,7 +41,7 @@ class BootloaderChoiceWindow: blradio = RadioGroup() grub = blradio.add(_("Use GRUB Boot Loader"), "grub", useGrub) - if iutil.getArch() == "i386": + if 0 and iutil.getArch() == "i386": lilo = blradio.add(_("Use LILO Boot Loader"), "lilo", useLilo) else: lilo = None |