2004-04-13 Ralf Corsepius <ralf_corsepius@rtems.org>

* rtems/score/powerpc.h: New (Copied and renamed from rtems/score/ppc.h)
	for consistency with other ports.
	* rtems/score/ppc.h: Deprecation wrapper to rtems/score/powerpc.h.
	* Makefile.am: Reflect changes above.
	* rtems/score/cpu.h: Include rtems/score/powerpc.h instead of
	rtems/score/ppc.h.
This commit is contained in:
Ralf Corsepius
2004-04-13 09:45:15 +00:00
parent e69307b790
commit b6bf7d535e
6 changed files with 1525 additions and 746 deletions
File diff suppressed because it is too large Load Diff
+9
View File
@@ -1,3 +1,12 @@
2004-04-13 Ralf Corsepius <ralf_corsepius@rtems.org>
* rtems/score/powerpc.h: New (Copied and renamed from rtems/score/ppc.h)
for consistency with other ports.
* rtems/score/ppc.h: Deprecation wrapper to rtems/score/powerpc.h.
* Makefile.am: Reflect changes above.
* rtems/score/cpu.h: Include rtems/score/powerpc.h instead of
rtems/score/ppc.h.
2004-04-12 David Querbach <querbach@realtime.bc.ca>
* asm.h, rtems/new-exceptions/cpu.h, rtems/score/ppc.h: addition of
+17 -8
View File
@@ -8,8 +8,11 @@ include_rtemsdir = $(includedir)/rtems
include_rtems_HEADERS = asm.h
include_rtems_scoredir = $(includedir)/rtems/score
include_rtems_score_HEADERS = rtems/score/ppc.h rtems/score/types.h
include_rtems_score_HEADERS += rtems/score/cpu.h
include_rtems_score_HEADERS = rtems/score/powerpc.h rtems/score/cpu.h \
rtems/score/types.h
if DEPRECATED
include_rtems_score_HEADERS += rtems/score/ppc.h
endif
include_rtems_old_exceptionsdir = $(includedir)/rtems/old-exceptions
include_rtems_old_exceptions_HEADERS = rtems/old-exceptions/cpu.h
@@ -39,17 +42,23 @@ $(PROJECT_INCLUDE)/rtems/score/$(dirstamp):
@: > $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(PROJECT_INCLUDE)/rtems/score/ppc.h: rtems/score/ppc.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/ppc.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/ppc.h
$(PROJECT_INCLUDE)/rtems/score/powerpc.h: rtems/score/powerpc.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/powerpc.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/powerpc.h
$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
$(PROJECT_INCLUDE)/rtems/score/types.h: rtems/score/types.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/types.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/types.h
$(PROJECT_INCLUDE)/rtems/score/cpu.h: rtems/score/cpu.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/cpu.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/cpu.h
if DEPRECATED
$(PROJECT_INCLUDE)/rtems/score/ppc.h: rtems/score/ppc.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/ppc.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/ppc.h
endif
$(PROJECT_INCLUDE)/rtems/old-exceptions/$(dirstamp):
@$(mkdir_p) $(PROJECT_INCLUDE)/rtems/old-exceptions
+1 -1
View File
@@ -5,7 +5,7 @@
#ifndef _rtems_score_cpu_h
#define _rtems_score_cpu_h
#include <rtems/score/ppc.h> /* pick up machine definitions */
#include <rtems/score/powerpc.h> /* pick up machine definitions */
#ifndef ASM
#include <rtems/score/types.h>
#endif
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff