summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/include/rtems/system.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-09-25 18:59:36 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-09-25 18:59:36 +0000
commita8d650c52405281bb053aaaedf6a78aad10d7551 (patch)
treebfefee9ecf3a9542dab9fa953ef2f9445703af88 /c/src/exec/score/include/rtems/system.h
parent2000-09-25 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-a8d650c52405281bb053aaaedf6a78aad10d7551.tar.bz2
2000-09-25 Joel Sherrill <joel@OARcorp.com>
* rtems/system.h: Switched a29k and hppa1.1 to using cpuopts.h not targopts.h to reduce dependency on BSP.
Diffstat (limited to '')
-rw-r--r--c/src/exec/score/include/rtems/system.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/c/src/exec/score/include/rtems/system.h b/c/src/exec/score/include/rtems/system.h
index b2f5690594..55eca15c61 100644
--- a/c/src/exec/score/include/rtems/system.h
+++ b/c/src/exec/score/include/rtems/system.h
@@ -30,7 +30,9 @@ extern "C" {
/*
* FIXME: cpuopts.h should be included here.
*/
-#if defined(__h8300__) \
+#if defined(_AM29K) \
+ || defined(__hppa__) \
+ || defined(__h8300__) \
|| defined(__i960__) \
|| defined(__mc68000__) \
|| defined(__sh__) \
@@ -39,7 +41,7 @@ extern "C" {
/* these cpus are ready to apply cpuopts.h */
#include <rtems/score/cpuopts.h>
#else
- /* fallback to targopts.h for hppa1.1, mips, and powerpc */
+ /* fallback to targopts.h for mips and powerpc */
#include <rtems/score/targopts.h>
#endif