summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-08-07 21:10:58 +0000
committerErik Troan <ewt@redhat.com>2000-08-07 21:10:58 +0000
commit83cd41f6050c6b2b34f39cdc728c9020a7fcd463 (patch)
treeaf93b2ca64dedbd8dcbf229800bc857811729bbb
parent1448c9df7fe481c4e7426527e1e3f19c7eb34b82 (diff)
downloadanaconda-83cd41f6050c6b2b34f39cdc728c9020a7fcd463.tar.gz
anaconda-83cd41f6050c6b2b34f39cdc728c9020a7fcd463.tar.xz
anaconda-83cd41f6050c6b2b34f39cdc728c9020a7fcd463.zip
only enable the enterprise kernel on smp systems
-rw-r--r--lilo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lilo.py b/lilo.py
index a88d0bfc2..3408f74ae 100644
--- a/lilo.py
+++ b/lilo.py
@@ -301,7 +301,7 @@ class LiloConfiguration:
upKernelLabel = main
defaultKernel = main
- if (hdList.has_key('kernel-enterprise') and
+ if (isys.smpAvailable() and hdList.has_key('kernel-enterprise') and
hdList['kernel-enterprise'].selected):
kernelList.append(('linux-ent',
hdList['kernel-enterprise'], "enterprise"))