Changeset 5b53d97 in rtems
- Timestamp:
- 10/24/00 21:52:19 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 509f8351
- Parents:
- 86748ff
- Location:
- c/src/lib/libcpu/mips
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/mips/ChangeLog
r86748ff r5b53d97 1 2000-10-24 Alan Cudmore <alanc@linuxstart.com> and 2 Joel Sherrill <joel@OARcorp.com> 3 4 * This is a major reworking of the mips64orion port to use 5 gcc predefines as much as possible and a big push to multilib 6 the mips port. The mips64orion port was copied/renamed to mips 7 to be more like other GNU tools. Alan did most of the technical 8 work of determining how to map old macro names used by the mips64orion 9 port to standard compiler macro definitions. Joel did the merge 10 with CVS magic to keep individual file history and did the BSP 11 modifications. Details follow: 12 * Makefile.am: Made clock and timer subdirectories conditional. 13 * configure.in: Ditto. 14 * clock/clock.S: Switch from using <idtmon.h> to <asm.h>. 15 * clock/gettime.S: Switch from using <idtmon.h> to <asm.h>. 16 1 17 2000-09-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 18 -
c/src/lib/libcpu/mips/Makefile.am
r86748ff r5b53d97 6 6 ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal 7 7 8 SUBDIRS = clock timer 8 SHARED_LIB = 9 10 if r46xx 11 CPU_SUBDIR = clock timer 12 endif 13 14 SUBDIRS = $(SHARED_LIB) $(CPU_SUBDIR) 15 9 16 10 17 include $(top_srcdir)/../../../../../automake/subdirs.am -
c/src/lib/libcpu/mips/clock/clock.S
r86748ff r5b53d97 24 24 #include <iregdef.h> 25 25 #include <idtcpu.h> 26 #include < idtmon.h>26 #include <asm.h> 27 27 28 28 FRAME(mips_set_timer,sp,0,ra) -
c/src/lib/libcpu/mips/configure.in
r86748ff r5b53d97 10 10 RTEMS_CANONICAL_TARGET_CPU 11 11 12 AM_INIT_AUTOMAKE(rtems-c-src-lib-libcpu-mips 64orion,$RTEMS_VERSION,no)12 AM_INIT_AUTOMAKE(rtems-c-src-lib-libcpu-mips,$RTEMS_VERSION,no) 13 13 AM_MAINTAINER_MODE 14 14 … … 27 27 RTEMS_CHECK_BSP_CACHE(RTEMS_BSP) 28 28 29 AM_CONDITIONAL(r46xx, test "$RTEMS_CPU_MODEL" = "R4600" \ 30 || test "$RTEMS_CPU_MODEL" = "R4650" ) 31 29 32 # Explicitly list all Makefiles here 30 33 AC_OUTPUT( -
c/src/lib/libcpu/mips/timer/gettime.S
r86748ff r5b53d97 25 25 #include <iregdef.h> 26 26 #include <idtcpu.h> 27 #include < idtmon.h>27 #include <asm.h> 28 28 29 29 FRAME(mips_read_timer,sp,0,ra)
Note: See TracChangeset
for help on using the changeset viewer.