summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-06-04 18:42:00 +0000
committerJeremy Katz <katzj@redhat.com>2007-06-04 18:42:00 +0000
commitf16f9e5bcc3b4c563a57ae3a3d96a1814c0eaac2 (patch)
tree22512ef1afbd6551b7c727cb537c005210367828
parent8db5b8645a2731fb2e60e9a756b73992b8d5611b (diff)
downloadanaconda-f16f9e5bcc3b4c563a57ae3a3d96a1814c0eaac2.tar.gz
anaconda-f16f9e5bcc3b4c563a57ae3a3d96a1814c0eaac2.tar.xz
anaconda-f16f9e5bcc3b4c563a57ae3a3d96a1814c0eaac2.zip
2007-06-04 Jeremy Katz <katzj@redhat.com>
* isys/smp.c (detectSMP): Build on arm (Lennert Buytenhek <buyenh AT wantstofly DOT org>)
-rw-r--r--ChangeLog5
-rw-r--r--isys/smp.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 932459853..6c5b5ab66 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-06-04 Jeremy Katz <katzj@redhat.com>
+
+ * isys/smp.c (detectSMP): Build on arm (Lennert Buytenhek
+ <buyenh AT wantstofly DOT org>)
+
2007-06-04 Dave Lehman <dlehman@redhat.com>
* image.py (CdromInstallMethod.__init__): don't nuke the timestamp
diff --git a/isys/smp.c b/isys/smp.c
index eced42c66..b23fcd6b3 100644
--- a/isys/smp.c
+++ b/isys/smp.c
@@ -624,6 +624,8 @@ int detectSMP(void)
return isSMP = 1;
#elif defined (__powerpc__)
return isSMP = powerpcDetectSMP();
+#elif defined (__arm__)
+ return isSMP = 0;
#else
#error unknown architecture
#endif