diff options
author | Erik Troan <ewt@redhat.com> | 2000-08-21 14:12:36 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-08-21 14:12:36 +0000 |
commit | af581ec20d93e9da63fba61d90bb3a865423d26d (patch) | |
tree | 5b10a67bfd48eff1e25ce5f028a2fc505ae279fa | |
parent | d4df1d7cdfb084d50ec83edb90dd141b6354833b (diff) | |
download | anaconda-af581ec20d93e9da63fba61d90bb3a865423d26d.tar.gz anaconda-af581ec20d93e9da63fba61d90bb3a865423d26d.tar.xz anaconda-af581ec20d93e9da63fba61d90bb3a865423d26d.zip |
don't call the up kernel -smp
-rw-r--r-- | lilo.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -307,6 +307,7 @@ class LiloConfiguration: mainLabelUsed = 1 kernelList.append((main, hdList['kernel-enterprise'], "enterprise")) + if (smpInstalled): thisLabel = main if mainLabelUsed: @@ -317,7 +318,7 @@ class LiloConfiguration: thisLabel = main if mainLabelUsed: - thisLabel = thisLabel + '-smp' + thisLabel = thisLabel + '-up' kernelList.append((thisLabel, hdList['kernel'], "")) |