source: rtems/aclocal/bsp-alias.m4 @ 9078e097

4.104.114.84.95
Last change on this file since 9078e097 was 75b453f, checked in by Joel Sherrill <joel.sherrill@…>, on 02/06/04 at 20:35:03

2004-02-06 Joel Sherrill <joel@…>

  • aclocal/bsp-alias.m4: Readd aliases for p4600 and p4650 which were accidentally removed when purging the mips64orion.
  • Property mode set to 100644
File size: 1.8 KB
RevLine 
[eb299afc]1dnl
2dnl  $Id$
3dnl
4
[c63a5cf]5dnl _RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
6dnl Internal subroutine to RTEMS_BSP_ALIAS
[3959276e]7AC_DEFUN([_RTEMS_BSP_ALIAS],
[c63a5cf]8[# account for "aliased" bsps which share source code
[d273d78a]9  case $1 in
[b812f84]10    simcpu32)     $2=sim68000         ;; # BSVC CPU32 variant
[dbe50fd]11    c3xsim)       $2=c4xsim           ;; # TI C3x Simulator in gdb
[d273d78a]12    mcp750)       $2=motorola_powerpc ;; # Motorola PPC board variant
13    mvme2307)     $2=motorola_powerpc ;; # Motorola PPC board variant
[174eed8c]14    mtx603e)      $2=motorola_powerpc ;; # Motorola PPC board variant
[d273d78a]15    mvme162lx)    $2=mvme162          ;; # m68k - mvme162 board variant
16    gen68360_040) $2=gen68360         ;; # m68k - 68360 in companion mode
[75b453f]17    p4600)        $2=p4000            ;; # mips - p4000 board w/IDT 4600
18    p4650)        $2=p4000            ;; # mips - p4000 board w/IDT 4650
[8ef3818]19    mbx8*)        $2=mbx8xx           ;; # MBX821/MBX860 board
[b50b3c8]20    pc386dx)      $2=pc386            ;; # i386 - PC w/o FPU
[6d3ab0f]21    pc486)        $2=pc386            ;; # i386 - PC with i486DX
22    pc586)        $2=pc386            ;; # i386 - PC with Pentium
23    pc686)        $2=pc386            ;; # i386 - PC with PentiumPro
[8e57762]24    pck6)         $2=pc386            ;; # i386 - PC with K6
[c63a5cf]25    bare*)        $2=bare             ;; # EXP: bare-aliases
[a44f9ca5]26    erc32nfp)     $2=erc32            ;; # erc32 without fpu
27    leon1)        $2=leon             ;; # leon without fpu
28    leon2)        $2=leon             ;; # leon with fpu
[227ae749]29    simsh7032)    $2=shsim            ;; # SH7032 simulator
30    simsh7045)    $2=shsim            ;; # SH7045 simulator
[d273d78a]31    *)            $2=$1;;
[c63a5cf]32  esac]
33)
34
35dnl RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
36dnl convert a bsp alias $1 into its bsp directory RTEMS_BSP_FAMILY
[3959276e]37AC_DEFUN([RTEMS_BSP_ALIAS],
[9c392aa2]38[_RTEMS_BSP_ALIAS(m4_if([$1],,[$RTEMS_BSP],[$1]),
39  m4_if([$2],,[RTEMS_BSP_FAMILY],[$2]))]
[c63a5cf]40)
Note: See TracBrowser for help on using the repository browser.