summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-07-31 20:24:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-07-31 20:24:08 +0000
commitb0844b98905190fc819725540326d1cb78086cf4 (patch)
treefbe0c58cd288a55bf8b7a5271df4506ff40df74a /c
parent2007-07-26 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b0844b98905190fc819725540326d1cb78086cf4.tar.bz2
2007-07-31 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1249/build * configure.ac: Jerry Needell <jerry.needell@unh.edu> reported that the leon3 was left out of the cache enable logic. Thus the cache management support code was empty on LEON3 CPUs.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libcpu/sparc/ChangeLog7
-rw-r--r--c/src/lib/libcpu/sparc/configure.ac2
2 files changed, 8 insertions, 1 deletions
diff --git a/c/src/lib/libcpu/sparc/ChangeLog b/c/src/lib/libcpu/sparc/ChangeLog
index 90da24fa7d..eae44425db 100644
--- a/c/src/lib/libcpu/sparc/ChangeLog
+++ b/c/src/lib/libcpu/sparc/ChangeLog
@@ -1,3 +1,10 @@
+2007-07-31 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ PR 1249/build
+ * configure.ac: Jerry Needell <jerry.needell@unh.edu> reported that the
+ leon3 was left out of the cache enable logic. Thus the cache
+ management support code was empty on LEON3 CPUs.
+
2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: New BUG-REPORT address.
diff --git a/c/src/lib/libcpu/sparc/configure.ac b/c/src/lib/libcpu/sparc/configure.ac
index 2a341dbcce..d59cb0c079 100644
--- a/c/src/lib/libcpu/sparc/configure.ac
+++ b/c/src/lib/libcpu/sparc/configure.ac
@@ -22,7 +22,7 @@ RTEMS_CANONICALIZE_TOOLS
RTEMS_PROG_CCAS
AM_CONDITIONAL(has_instruction_cache, test "$RTEMS_CPU_MODEL" = "leon1" \
-|| test "$RTEMS_CPU_MODEL" = "leon2" )
+|| test "$RTEMS_CPU_MODEL" = "leon2" || test "$RTEMS_CPU_MODEL" = "leon3" )
RTEMS_AMPOLISH3