From b0844b98905190fc819725540326d1cb78086cf4 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 31 Jul 2007 20:24:08 +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 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 + + 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