summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/m68k/shared (unfollow)
Commit message (Collapse)AuthorFilesLines
2002-08-212002-08-21 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-4/+51
* configure.ac, shared/misc/Makefile.am: PR217 required that the idle task be moved to libcpu so it could be more acutely aware of the CPU model. This file was modified to pick up the idle task from there. * shared/misc/m68kidle.c: New file.
2002-08-112002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2-2/+2
* m68040/fpsp/Makefile.am: Use .$(OBJEXT) instead of .o. * mcf5206/clock/Makefile.am: Use .$(OBJEXT) instead of .o. * mcf5206/console/Makefile.am: Use .$(OBJEXT) instead of .o. * mcf5206/mbus/Makefile.am: Use .$(OBJEXT) instead of .o. * mcf5206/timer/Makefile.am: Use .$(OBJEXT) instead of .o. * shared/cache/Makefile.am: Use .$(OBJEXT) instead of .o. * shared/misc/Makefile.am: Use .$(OBJEXT) instead of .o.
2002-08-062002-08-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius1-1/+3
* configure.ac: Replace mcpu32 by mcpu32p conditional. * share/misc/Makefile.am: Fix AM_CPPFLAGS bug.
2002-08-052002-08-05 Joel Sherrill <joel@OARcorp.com>Joel Sherrill4-1/+33
* Per PR260 eliminate use of make-target-options. This impacted RTEMS allowing a distinction between the CPU32 and CPU32+ in the SuperCore and required that the m68k optimized memcpy be moved to libcpu. * shared/misc/memcpy.c: Moved from score/cpu/m68k. * configure.ac, shared/Makefile.am: Modified to reflect new directory. * shared/misc/.cvsignore, shared/misc/Makefile.am: New file.
2002-03-282002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2-2/+0
* configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). * m68040/fpsp/Makefile.am: Remove AUTOMAKE_OPTIONS. * m68040/Makefile.am: Remove AUTOMAKE_OPTIONS. * Makefile.am: Remove AUTOMAKE_OPTIONS. * shared/cache/Makefile.am: Remove AUTOMAKE_OPTIONS. * shared/Makefile.am: Remove AUTOMAKE_OPTIONS.
2001-09-272001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1-2/+2
* shared/cache/Makefile.am: Use 'PREINSTALL_FILES ='. * shared/cache/Makefile.am: Use 'CLEANFILES ='.
2001-03-052001-03-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1-5/+9
* m68040/fpsp/Makefile.am, shared/cache/Makefile.am: Apply include_*HEADERS instead of H_FILES.
2000-09-052000-09-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1-4/+5
* m68040/fpsp/Makefile.am, shared/cache/Makefile.am: Include compile.am
2000-06-14Patch from John Cotton <john.cotton@nrc.ca> to correct cacheJoel Sherrill2-34/+34
routine naming to follow RTEMS package/object.method rule. This patch also eliminated calls to the obsolete routine m68k_enable_caching.
2000-06-13Moved i386 and m68k cache management code to libcpu. EverythingJoel Sherrill4-0/+269
now is an implementation of the prototypes in rtems/rtems/cache.h. The libcpu/i386/wrapup directory is no longer needed. The PowerPC needs this done to it.
2000-06-13Added .cvsignore.Joel Sherrill2-0/+4
1998-06-12Added optimized version of memcpy.c to this directory since RTEMS makesJoel Sherrill1-0/+87
important distinctions between CPU models which are not made by gcc. These distinctions help give us a more optimized memcpy(). This is important for message queues and KA9Q.