summaryrefslogtreecommitdiffstats
path: root/isys/smp.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-09-11 16:22:10 +0000
committerJeremy Katz <katzj@redhat.com>2002-09-11 16:22:10 +0000
commitab3177178c86b5605054b8d347af4c1e87ed3de7 (patch)
tree5a52000f57fb23cba63f1426707237d43b7b8630 /isys/smp.c
parentd293296abb8d33d84bc04abca23b7f216cfad02e (diff)
downloadanaconda-ab3177178c86b5605054b8d347af4c1e87ed3de7.tar.gz
anaconda-ab3177178c86b5605054b8d347af4c1e87ed3de7.tar.xz
anaconda-ab3177178c86b5605054b8d347af4c1e87ed3de7.zip
always assume x86_64 is smp for now
Diffstat (limited to 'isys/smp.c')
-rw-r--r--isys/smp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/isys/smp.c b/isys/smp.c
index 32c42575b..64530d629 100644
--- a/isys/smp.c
+++ b/isys/smp.c
@@ -591,6 +591,8 @@ int detectSMP(void)
return isSMP = s390DetectSMP();
#elif __ia64__
return isSMP = 1;
+#elif __x86_64__
+ return isSMP = 1;
#else
#error unknown architecture
#endif