Changeset 227ae749 in rtems


Ignore:
Timestamp:
01/22/01 14:03:44 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
d6b1d73
Parents:
7a55888
Message:

2001-01-22 Ralf Corsepius <corsepiu@…>

  • aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add simsh7032 and simsh7045.
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r7a55888 r227ae749  
     12001-01-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add simsh7032 and
     4        simsh7045.
     5
    162001-01-03      Emmanuel Raguet <raguet@crf.canon.fr>
    27
  • aclocal/bsp-alias.m4

    r7a55888 r227ae749  
    2525    leon1)        $2=leon             ;; # leon without fpu
    2626    leon2)        $2=leon             ;; # leon with fpu
     27    simsh7032)    $2=shsim            ;; # SH7032 simulator
     28    simsh7045)    $2=shsim            ;; # SH7045 simulator
    2729    *)            $2=$1;;
    2830  esac]
  • aclocal/check-bsps.m4

    r7a55888 r227ae749  
    3232        leon)              rtems_bsp="$rtems_bsp leon1 leon2";;
    3333        sim68000)          rtems_bsp="$rtems_bsp sim68000 simcpu32";;
     34        shsim)             rtems_bsp="$rtems_bsp simsh7032 simsh7045";;
    3435        *) $1="[$]$1 $file";;
    3536      esac;
  • make/ChangeLog

    r7a55888 r227ae749  
     12001-01-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     22001-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     3        * aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add simsh7032 and
     4        simsh7045.
     5        * ChangeLog: Remove bogus 2001-01-22 entry.
    16
    272001-01-09      Joel Sherrill <joel@OARcorp.com>
  • make/custom/shsim.cfg

    r7a55888 r227ae749  
    55#
    66
     7HZ=20000000
     8
    79include $(RTEMS_ROOT)/make/custom/default.cfg
    810
    911RTEMS_CPU=sh
    10 RTEMS_CPU_MODEL=sh1
     12RTEMS_CPU_MODEL=sh7032
    1113
    1214# This is the actual bsp directory used during the build process.
    1315RTEMS_BSP_FAMILY=shsim
     16
     17# BSP specific preprocessor flags.
     18# These should only be used in BSP dependent directories.
     19BSP_CPPFLAGS=-DHZ=$(HZ)
    1420
    1521#  This contains the compiler options necessary to select the CPU model
     
    3238# will be able to override parts of the compilers specs and link using gcc.
    3339
    34 ifeq ($(RTEMS_USE_GCC272),yes)
    35 
    36 define make-exe
    37         $(LD) -u _sbrk $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \
    38              $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
    39         $(NM) -g -n $(basename $@).exe > $(basename $@).num
    40         $(SIZE) $(basename $@).exe
    41 endef
    42 
    43 else
    4440define make-exe
    4541        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
     
    4945        $(SIZE) $@
    5046endef
    51 endif
    5247
    5348# Miscellaneous additions go here
Note: See TracChangeset for help on using the changeset viewer.