Changeset 06a27bbf in rtems
- Timestamp:
- 08/21/02 17:43:48 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3d57435d
- Parents:
- 0308c805
- Location:
- c/src/lib/libcpu/m68k
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/m68k/ChangeLog
r0308c805 r06a27bbf 1 2002-08-21 Joel Sherrill <joel@OARcorp.com> 2 3 * configure.ac, shared/misc/Makefile.am: PR217 required that the 4 idle task be moved to libcpu so it could be more acutely aware of 5 the CPU model. This file was modified to pick up the idle task 6 from there. 7 * shared/misc/m68kidle.c: New file. 8 1 9 2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
c/src/lib/libcpu/m68k/configure.ac
r0308c805 r06a27bbf 28 28 RTEMS_CHECK_BSP_CACHE(RTEMS_BSP) 29 29 30 AM_CONDITIONAL(shared, test "$RTEMS_CPU_MODEL" = "m68020" \ 31 || test "$RTEMS_CPU_MODEL" = "m68020" \ 32 || test "$RTEMS_CPU_MODEL" = "m68030" \ 33 || test "$RTEMS_CPU_MODEL" = "m68lc040" \ 34 || test "$RTEMS_CPU_MODEL" = "m68040" \ 35 || test "$RTEMS_CPU_MODEL" = "m68ec040" \ 36 || test "$RTEMS_CPU_MODEL" = "m68lc040" \ 37 || test "$RTEMS_CPU_MODEL" = "m68060" \ 38 || test "$RTEMS_CPU_MODEL" = "m68340" \ 39 || test "$RTEMS_CPU_MODEL" = "m68360" \ 40 || test "$RTEMS_CPU_MODEL" = "m68331" \ 41 || test "$RTEMS_CPU_MODEL" = "m68332" \ 42 || test "$RTEMS_CPU_MODEL" = "mcpu32" \ 43 || test "$RTEMS_CPU_MODEL" = "mcpu32p" \ 44 ) 30 # At this time all models should use the shared directory so do this 31 AM_CONDITIONAL(shared, true) 45 32 46 33 AM_CONDITIONAL(m68040, test "$RTEMS_CPU_MODEL" = "m68040") … … 60 47 ) 61 48 49 AM_CONDITIONAL(mcf5272, test "$RTEMS_CPU_MODEL" = "mcf5272" ) 50 62 51 case "$RTEMS_CPU_MODEL" in 63 52 mcf5206 ) AC_CONFIG_SUBDIRS([mcf5206]);; -
c/src/lib/libcpu/m68k/shared/misc/Makefile.am
r0308c805 r06a27bbf 4 4 5 5 6 C_FILES = memcpy.c 6 C_FILES = memcpy.c m68kidle.c 7 7 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 8 8 … … 15 15 # gcc doesn't recognize difference between the cpu32 and cpu32+ so we have to 16 16 if mcpu32p 17 M CPU32P_CPPFLAGS = -D__mcpu32p__17 M68K_CPPFLAGS = -D__mcpu32p__ 18 18 endif 19 19 20 AM_CPPFLAGS += $(MCPU32P_CPPFLAGS) 20 if mcf5272 21 M68K_CPPFLAGS = -Dmcf5272 22 endif 23 24 AM_CPPFLAGS += $(M68K_CPPFLAGS) 21 25 22 26 all-local: $(ARCH) $(OBJS) 23 27 24 EXTRA_DIST = memcpy.c 28 EXTRA_DIST = memcpy.c m68kidle.c 25 29 26 30 include $(top_srcdir)/../../../../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.