source: rtems/aclocal/bsp-alias.m4 @ 18e23e91

4.104.115
Last change on this file since 18e23e91 was 86abd5b9, checked in by Joel Sherrill <joel.sherrill@…>, on 05/28/09 at 20:09:16

2009-05-28 Joel Sherrill <joel.sherrill@…>

  • aclocal/bsp-alias.m4: Add csb637 as variant of csb337.
  • Property mode set to 100644
File size: 3.0 KB
Line 
1dnl
2dnl  $Id$
3dnl
4
5dnl _RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
6dnl Internal subroutine to RTEMS_BSP_ALIAS
7AC_DEFUN([_RTEMS_BSP_ALIAS],
8[# account for "aliased" bsps which share source code
9  case $1 in
10    bare*)        $2=bare             ;; # EXP: bare-aliases
11
12    c3xsim)       $2=c4xsim           ;; # TI C3x Simulator in gdb
13    csb637)       $2=csb337           ;; # Cogent CSB637
14    gen68360_040) $2=gen68360         ;; # m68k - 68360 in companion mode
15    h8sxsim)      $2=h8sim            ;; # h8sim built for h8sx
16    pghplus)      $2=tqm8xx           ;; # powerpc - mpc8xx custom board
17    tqm8xx_stk8xx) $2=tqm8xx          ;; # powerpc - tqm8xx on starter kit
18    pgh360)       $2=gen68360         ;; # m68k - 68360 custom board
19    m5484FireEngine) $2=genmcf548x    ;; # m68k - mcf548x eva board
20    mbx8*)        $2=mbx8xx           ;; # MBX821/MBX860 board
21    mcp750)       $2=motorola_powerpc ;; # Motorola PPC board variant
22    mtx603e)      $2=motorola_powerpc ;; # Motorola PPC board variant
23    mvme162lx)    $2=mvme162          ;; # m68k - mvme162 board variant
24    mvme2100)     $2=motorola_powerpc ;; # Motorola PPC board variant
25    mvme2307)     $2=motorola_powerpc ;; # Motorola PPC board variant
26    m32csim)      $2=m32cbsp          ;; # M32C on gdb simulator
27    p4600)        $2=p4000            ;; # mips - p4000 board w/IDT 4600
28    p4650)        $2=p4000            ;; # mips - p4000 board w/IDT 4650
29    pc386dx)      $2=pc386            ;; # i386 - PC w/o FPU
30    pc486)        $2=pc386            ;; # i386 - PC with i486DX
31    pc586)        $2=pc386            ;; # i386 - PC with Pentium
32    pc686)        $2=pc386            ;; # i386 - PC with PentiumPro
33    brs5l*)       $2=gen5200          ;; # MPC5200 based board
34    pm520*)       $2=gen5200          ;; # MPC5200 based board
35    icecube)      $2=gen5200          ;; # MPC5200 based board - LITE5200B
36    mpc55??evb)   $2=mpc55xxevb       ;; # MPC5566EVB based board
37    mpc8349eamds) $2=gen83xx          ;; # MPC8349 based board
38    hsc_cm01)     $2=gen83xx          ;; # MPC8349 based board
39    mpc8313erdb)  $2=gen83xx          ;; # MPC83XX based board
40    rtl22xx_t)    $2=rtl22xx          ;; # rtl22xx bsp in thumb mode
41    lpc2478)      $2=lpc24xx          ;; # LPC2478 (QVGA Base Board from Embedded Artists)
42    lpc2478_ncs)  $2=lpc24xx          ;; # LPC2478 (NCS)
43    lpc2478_ncs_ram) $2=lpc24xx       ;; # LPC2478 (NCS, code and data in external RAM)
44    simcpu32)     $2=sim68000         ;; # BSVC CPU32 variant
45    simsh1)       $2=shsim            ;; # SH1 simulator in GDB
46    simsh2)       $2=shsim            ;; # SH2 simulator in GDB
47    simsh2e)       $2=shsim           ;; # SH2e simulator in GDB
48    simsh4)       $2=shsim            ;; # SH4 simulator in GDB
49    sis)          $2=erc32            ;; # erc32 SIS simulator
50    *)            $2=$1;;
51  esac]
52)
53
54dnl RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
55dnl convert a bsp alias $1 into its bsp directory RTEMS_BSP_FAMILY
56AC_DEFUN([RTEMS_BSP_ALIAS],
57[_RTEMS_BSP_ALIAS(m4_if([$1],,[$RTEMS_BSP],[$1]),
58  m4_if([$2],,[RTEMS_BSP_FAMILY],[$2]))]
59)
Note: See TracBrowser for help on using the repository browser.