summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/sparc
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-07-31 20:23:52 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-07-31 20:23:52 +0000
commit8661209e6e8fac8e02c0b99c103b36efeec7336e (patch)
tree9b9c126bcf886e4adddc506940df696b334dde37 /c/src/lib/libcpu/sparc
parent2007-07-31 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-8661209e6e8fac8e02c0b99c103b36efeec7336e.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/src/lib/libcpu/sparc')
-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 aa94fc8ae4..a9d2ebb64d 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