summaryrefslogtreecommitdiffstats
path: root/textw/bootloader_text.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-10-22 20:01:02 +0000
committerJeremy Katz <katzj@redhat.com>2003-10-22 20:01:02 +0000
commitcf648d51edb76a31ce02a1a2f29100c4a3af7c48 (patch)
treed199b64551412662bea85d722b47dfd8ebfd02f0 /textw/bootloader_text.py
parent7f5d3cec9b4a06d4155010e4e50134611557f4f3 (diff)
downloadanaconda-cf648d51edb76a31ce02a1a2f29100c4a3af7c48.tar.gz
anaconda-cf648d51edb76a31ce02a1a2f29100c4a3af7c48.tar.xz
anaconda-cf648d51edb76a31ce02a1a2f29100c4a3af7c48.zip
'linux lilo' will get you lilo back now.
*sigh*
Diffstat (limited to 'textw/bootloader_text.py')
-rw-r--r--textw/bootloader_text.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/textw/bootloader_text.py b/textw/bootloader_text.py
index d312e2a13..8ca4e469c 100644
--- a/textw/bootloader_text.py
+++ b/textw/bootloader_text.py
@@ -18,6 +18,7 @@ from flags import flags
from rhpl.log import log
import string
import iutil
+import bootloader
class BootloaderChoiceWindow:
@@ -41,7 +42,7 @@ class BootloaderChoiceWindow:
blradio = RadioGroup()
grub = blradio.add(_("Use GRUB Boot Loader"), "grub", useGrub)
- if 0 and iutil.getArch() == "i386":
+ if bootloader.showLilo and iutil.getArch() == "i386":
lilo = blradio.add(_("Use LILO Boot Loader"), "lilo", useLilo)
else:
lilo = None