summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/cpu/i386
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/score/cpu/i386')
-rw-r--r--c/src/exec/score/cpu/i386/ChangeLog5
-rw-r--r--c/src/exec/score/cpu/i386/Makefile.am7
-rw-r--r--c/src/exec/score/cpu/i386/rtems.S30
3 files changed, 6 insertions, 36 deletions
diff --git a/c/src/exec/score/cpu/i386/ChangeLog b/c/src/exec/score/cpu/i386/ChangeLog
index bfd63a1242..f4ecef06de 100644
--- a/c/src/exec/score/cpu/i386/ChangeLog
+++ b/c/src/exec/score/cpu/i386/ChangeLog
@@ -1,3 +1,8 @@
+2002-07-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * rtems.S: Remove.
+ * Makefile.am: Reflect changes above.
+
2002-07-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Remove RTEMS_PROJECT_ROOT.
diff --git a/c/src/exec/score/cpu/i386/Makefile.am b/c/src/exec/score/cpu/i386/Makefile.am
index cb6b57ce34..efcc908a16 100644
--- a/c/src/exec/score/cpu/i386/Makefile.am
+++ b/c/src/exec/score/cpu/i386/Makefile.am
@@ -45,19 +45,14 @@ S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
rtems_cpu_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
-$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
- $(INSTALL_DATA) $< $@
-
$(REL): $(rtems_cpu_rel_OBJECTS)
$(make-rel)
-TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
-
all-local: $(ARCH) $(PREINSTALL_FILES) $(rtems_cpu_rel_OBJECTS) $(REL) \
$(TMPINSTALL_FILES)
.PRECIOUS: $(REL)
-EXTRA_DIST = cpu.c cpu_asm.S rtems.S
+EXTRA_DIST = cpu.c cpu_asm.S
include $(top_srcdir)/../../../automake/local.am
diff --git a/c/src/exec/score/cpu/i386/rtems.S b/c/src/exec/score/cpu/i386/rtems.S
deleted file mode 100644
index 96e7d2a0a6..0000000000
--- a/c/src/exec/score/cpu/i386/rtems.S
+++ /dev/null
@@ -1,30 +0,0 @@
-/* rtems.s
- *
- * This file contains the single entry point code for
- * the i386 implementation of RTEMS.
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#include <asm.h>
-
- EXTERN (_Entry_points)
-
- BEGIN_CODE
-
- .align 2
- PUBLIC (RTEMS)
-
-SYM (RTEMS):
- jmpl *SYM (_Entry_points)(,eax,4)
-
- END_CODE
-
-END