From 8661209e6e8fac8e02c0b99c103b36efeec7336e Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 31 Jul 2007 20:23:52 +0000 Subject: [PATCH] 2007-07-31 Joel Sherrill PR 1249/build * configure.ac: Jerry Needell reported that the leon3 was left out of the cache enable logic. Thus the cache management support code was empty on LEON3 CPUs. --- c/src/lib/libcpu/sparc/ChangeLog | 7 +++++++ c/src/lib/libcpu/sparc/configure.ac | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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 + + PR 1249/build + * configure.ac: Jerry Needell 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 * 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