diff options
author | Erik Troan <ewt@redhat.com> | 2000-08-07 21:10:58 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-08-07 21:10:58 +0000 |
commit | 83cd41f6050c6b2b34f39cdc728c9020a7fcd463 (patch) | |
tree | af93b2ca64dedbd8dcbf229800bc857811729bbb /lilo.py | |
parent | 1448c9df7fe481c4e7426527e1e3f19c7eb34b82 (diff) | |
download | anaconda-83cd41f6050c6b2b34f39cdc728c9020a7fcd463.tar.gz anaconda-83cd41f6050c6b2b34f39cdc728c9020a7fcd463.tar.xz anaconda-83cd41f6050c6b2b34f39cdc728c9020a7fcd463.zip |
only enable the enterprise kernel on smp systems
Diffstat (limited to 'lilo.py')
-rw-r--r-- | lilo.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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")) |