Changeset 06a27bbf in rtems


Ignore:
Timestamp:
08/21/02 17:43:48 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
3d57435d
Parents:
0308c805
Message:

2002-08-21 Joel Sherrill <joel@…>

  • 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.
Location:
c/src/lib/libcpu/m68k
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libcpu/m68k/ChangeLog

    r0308c805 r06a27bbf  
     12002-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
    192002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    210
  • c/src/lib/libcpu/m68k/configure.ac

    r0308c805 r06a27bbf  
    2828RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
    2929
    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
     31AM_CONDITIONAL(shared, true)
    4532
    4633AM_CONDITIONAL(m68040, test "$RTEMS_CPU_MODEL" = "m68040")
     
    6047)
    6148
     49AM_CONDITIONAL(mcf5272, test "$RTEMS_CPU_MODEL" = "mcf5272" )
     50
    6251case "$RTEMS_CPU_MODEL" in
    6352mcf5206 ) AC_CONFIG_SUBDIRS([mcf5206]);;
  • c/src/lib/libcpu/m68k/shared/misc/Makefile.am

    r0308c805 r06a27bbf  
    44
    55
    6 C_FILES = memcpy.c
     6C_FILES = memcpy.c m68kidle.c
    77C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    88
     
    1515# gcc doesn't recognize difference between the cpu32 and cpu32+ so we have to
    1616if mcpu32p
    17 MCPU32P_CPPFLAGS = -D__mcpu32p__
     17M68K_CPPFLAGS = -D__mcpu32p__
    1818endif
    1919
    20 AM_CPPFLAGS += $(MCPU32P_CPPFLAGS)
     20if mcf5272
     21M68K_CPPFLAGS = -Dmcf5272
     22endif
     23
     24AM_CPPFLAGS += $(M68K_CPPFLAGS)
    2125
    2226all-local: $(ARCH) $(OBJS)
    2327
    24 EXTRA_DIST = memcpy.c
     28EXTRA_DIST = memcpy.c m68kidle.c
    2529
    2630include $(top_srcdir)/../../../../../automake/local.am
Note: See TracChangeset for help on using the changeset viewer.