summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-02-12 06:19:20 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-02-12 06:19:20 +0000
commit9f66699283a37870ed82b9d3dc65abcc791327cd (patch)
tree9c8cd40bd1b5c0cecda510a0f101b3a55696a764
parent2005-02-12 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-9f66699283a37870ed82b9d3dc65abcc791327cd.tar.bz2
2005-02-12 Ralf Corsepius <ralf.corsepius@rtems.org>
* cpu.c: New (Stub file for consistency with other ports). * Makefile.am: Reflect changes above.
-rw-r--r--cpukit/score/cpu/powerpc/ChangeLog5
-rw-r--r--cpukit/score/cpu/powerpc/Makefile.am4
-rw-r--r--cpukit/score/cpu/powerpc/cpu.c12
3 files changed, 21 insertions, 0 deletions
diff --git a/cpukit/score/cpu/powerpc/ChangeLog b/cpukit/score/cpu/powerpc/ChangeLog
index 69cb16b38c..4ecfb3ba4a 100644
--- a/cpukit/score/cpu/powerpc/ChangeLog
+++ b/cpukit/score/cpu/powerpc/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-12 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * cpu.c: New (Stub file for consistency with other ports).
+ * Makefile.am: Reflect changes above.
+
2005-02-10 Ralf Corsepius <ralf.corsepius@rtems.org>
* rtems/asm.h, rtems/old-exceptions/cpu.h, rtems/score/powerpc.h:
diff --git a/cpukit/score/cpu/powerpc/Makefile.am b/cpukit/score/cpu/powerpc/Makefile.am
index f5f192609c..7ce820ccae 100644
--- a/cpukit/score/cpu/powerpc/Makefile.am
+++ b/cpukit/score/cpu/powerpc/Makefile.am
@@ -26,6 +26,10 @@ include_rtems_new_exceptions_HEADERS = rtems/new-exceptions/cpu.h
include_rtems_powerpcdir = $(includedir)/rtems/powerpc
include_rtems_powerpc_HEADERS = rtems/powerpc/registers.h
+noinst_LIBRARIES = libscorecpu.a
+libscorecpu_a_SOURCES = cpu.c
+libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS)
+
all-local: $(PREINSTALL_FILES)
include $(srcdir)/preinstall.am
diff --git a/cpukit/score/cpu/powerpc/cpu.c b/cpukit/score/cpu/powerpc/cpu.c
new file mode 100644
index 0000000000..0004ed57cf
--- /dev/null
+++ b/cpukit/score/cpu/powerpc/cpu.c
@@ -0,0 +1,12 @@
+/*
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+/*
+ * For now, this file is just a stub to work around
+ * structural deficiencies of the powerpc port.
+ */