summaryrefslogtreecommitdiffstats
path: root/todo.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-26 05:34:22 +0000
committerMatt Wilson <msw@redhat.com>1999-09-26 05:34:22 +0000
commitf64d4e48c0a1c2028aa79952c85183374b9438f0 (patch)
tree2e3565c93398facc67662142ef6ee22f08fb6303 /todo.py
parent8726a775adc2c7c33c74b667a59be3db27182455 (diff)
downloadanaconda-f64d4e48c0a1c2028aa79952c85183374b9438f0.tar.gz
anaconda-f64d4e48c0a1c2028aa79952c85183374b9438f0.tar.xz
anaconda-f64d4e48c0a1c2028aa79952c85183374b9438f0.zip
smp kernels matter
Diffstat (limited to 'todo.py')
-rw-r--r--todo.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/todo.py b/todo.py
index d553c5ad3..0b23b365b 100644
--- a/todo.py
+++ b/todo.py
@@ -836,7 +836,7 @@ class ToDo:
lilo.addEntry("timeout", "50")
smpInstalled = (self.hdList.has_key('kernel-smp') and
- self.hdList['kernel-smp'].selected and isys.smpAvailable())
+ self.hdList['kernel-smp'].selected)
if self.mounts.has_key ('/'):
(dev, fstype, format) = self.mounts['/']
@@ -941,9 +941,6 @@ class ToDo:
comp.select (1)
self.comps['Base'].select(1)
- if (self.hdList.has_key('kernel-smp') and isys.smpAvailable()):
- self.hdList['kernel-smp'].selected = 1
-
self.updateInstClassComps()
return self.comps
@@ -1386,6 +1383,11 @@ class ToDo:
self.getHeaderList()
self.getCompsList()
+ # this is NICE and LATE. It lets kickstart/server/workstation
+ # installs detect this properly
+ if (self.hdList.has_key('kernel-smp') and isys.smpAvailable()):
+ self.hdList['kernel-smp'].selected = 1
+
if self.x.server:
self.selectPackage ('XFree86-' + self.x.server)