source: rtems/aclocal/bsp-alias.m4 @ ab922554

4.104.115
Last change on this file since ab922554 was 7d35b7ff, checked in by Joel Sherrill <joel.sherrill@…>, on 10/14/08 at 21:58:07

2008-10-14 Joel Sherrill <joel.sherrill@…>

  • aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add h8sxsim as variant of h8sim.
  • Property mode set to 100644
File size: 2.8 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    gen68360_040) $2=gen68360         ;; # m68k - 68360 in companion mode
14    h8sxsim)      $2=h8sim          ;; # h8sim built for h8sx
15    pghplus)      $2=tqm8xx           ;; # powerpc - mpc8xx custom board
16    tqm8xx_stk8xx) $2=tqm8xx          ;; # powerpc - tqm8xx on starter kit
17    pgh360)       $2=gen68360         ;; # m68k - 68360 custom board
18    m5484FireEngine) $2=genmcf548x    ;; # m68k - mcf548x eva board
19    mbx8*)        $2=mbx8xx           ;; # MBX821/MBX860 board
20    mcp750)       $2=motorola_powerpc ;; # Motorola PPC board variant
21    mtx603e)      $2=motorola_powerpc ;; # Motorola PPC board variant
22    mvme162lx)    $2=mvme162          ;; # m68k - mvme162 board variant
23    mvme2100)     $2=motorola_powerpc ;; # Motorola PPC board variant
24    mvme2307)     $2=motorola_powerpc ;; # Motorola PPC board variant
25    m32csim)      $2=m32cbsp          ;; # M32C on gdb simulator
26    p4600)        $2=p4000            ;; # mips - p4000 board w/IDT 4600
27    p4650)        $2=p4000            ;; # mips - p4000 board w/IDT 4650
28    pc386dx)      $2=pc386            ;; # i386 - PC w/o FPU
29    pc486)        $2=pc386            ;; # i386 - PC with i486DX
30    pc586)        $2=pc386            ;; # i386 - PC with Pentium
31    pc686)        $2=pc386            ;; # i386 - PC with PentiumPro
32    pck6)         $2=pc386            ;; # i386 - PC with K6
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    simcpu32)     $2=sim68000         ;; # BSVC CPU32 variant
43    simsh1)       $2=shsim            ;; # SH1 simulator in GDB
44    simsh2)       $2=shsim            ;; # SH2 simulator in GDB
45    simsh4)       $2=shsim            ;; # SH4 simulator in GDB
46    sis)          $2=erc32            ;; # erc32 SIS simulator
47    *)            $2=$1;;
48  esac]
49)
50
51dnl RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
52dnl convert a bsp alias $1 into its bsp directory RTEMS_BSP_FAMILY
53AC_DEFUN([RTEMS_BSP_ALIAS],
54[_RTEMS_BSP_ALIAS(m4_if([$1],,[$RTEMS_BSP],[$1]),
55  m4_if([$2],,[RTEMS_BSP_FAMILY],[$2]))]
56)
Note: See TracBrowser for help on using the repository browser.