source: rtems/aclocal/bsp-alias.m4 @ 92f3264

4.9
Last change on this file since 92f3264 was 92f3264, checked in by Joel Sherrill <joel.sherrill@…>, on 09/10/08 at 16:03:10

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

  • MAINTAINERS, README.configure, aclocal/bsp-alias.m4, aclocal/canonical-target-name.m4, aclocal/check-bsps.m4: Remove TI C4x and NIOS2 ports from 4.9 branch.
  • Property mode set to 100644
File size: 2.5 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    gen68360_040) $2=gen68360         ;; # m68k - 68360 in companion mode
13    pghplus)      $2=tqm8xx           ;; # powerpc - mpc8xx custom board
14    tqm8xx_stk8xx) $2=tqm8xx          ;; # powerpc - tqm8xx on starter kit
15    pgh360)       $2=gen68360         ;; # m68k - 68360 custom board
16    m5484FireEngine) $2=genmcf548x    ;; # m68k - mcf548x eva board
17    mbx8*)        $2=mbx8xx           ;; # MBX821/MBX860 board
18    mcp750)       $2=motorola_powerpc ;; # Motorola PPC board variant
19    mtx603e)      $2=motorola_powerpc ;; # Motorola PPC board variant
20    mvme162lx)    $2=mvme162          ;; # m68k - mvme162 board variant
21    mvme2100)     $2=motorola_powerpc ;; # Motorola PPC board variant
22    mvme2307)     $2=motorola_powerpc ;; # Motorola PPC board variant
23    p4600)        $2=p4000            ;; # mips - p4000 board w/IDT 4600
24    p4650)        $2=p4000            ;; # mips - p4000 board w/IDT 4650
25    pc386dx)      $2=pc386            ;; # i386 - PC w/o FPU
26    pc486)        $2=pc386            ;; # i386 - PC with i486DX
27    pc586)        $2=pc386            ;; # i386 - PC with Pentium
28    pc686)        $2=pc386            ;; # i386 - PC with PentiumPro
29    pck6)         $2=pc386            ;; # i386 - PC with K6
30    brs5l*)       $2=gen5200          ;; # MPC5200 based board
31    pm520*)       $2=gen5200          ;; # MPC5200 based board
32    icecube)      $2=gen5200          ;; # MPC5200 based board - LITE5200B
33    mpc55??evb)   $2=mpc55xxevb       ;; # MPC5566EVB based board
34    mpc8349eamds) $2=gen83xx          ;; # MPC8349 based board
35    hsc_cm01)     $2=gen83xx          ;; # MPC8349 based board
36    mpc8313erdb)  $2=gen83xx          ;; # MPC83XX based board
37    rtl22xx_t)    $2=rtl22xx          ;; # rtl22xx bsp in thumb mode
38    simcpu32)     $2=sim68000         ;; # BSVC CPU32 variant
39    simsh7032)    $2=shsim            ;; # SH7032 simulator
40    simsh7045)    $2=shsim            ;; # SH7045 simulator
41    sis)          $2=erc32            ;; # erc32 SIS simulator
42    *)            $2=$1;;
43  esac]
44)
45
46dnl RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
47dnl convert a bsp alias $1 into its bsp directory RTEMS_BSP_FAMILY
48AC_DEFUN([RTEMS_BSP_ALIAS],
49[_RTEMS_BSP_ALIAS(m4_if([$1],,[$RTEMS_BSP],[$1]),
50  m4_if([$2],,[RTEMS_BSP_FAMILY],[$2]))]
51)
Note: See TracBrowser for help on using the repository browser.