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

4.104.115
Last change on this file since aa5ddd3 was aa5ddd3, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 10/05/09 at 10:32:55

renamed lpc24xx BSPs

  • Property mode set to 100644
File size: 3.4 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
[a533890]10    bare*)        $2=bare             ;; # EXP: bare-aliases
[41319435]11
[58236c8f]12    arm7tdmi)     $2=gdbarmsim        ;; # arm simulator in gdb
13    arm920)       $2=gdbarmsim        ;; # arm simulator in gdb
14    arm1136jfs)   $2=gdbarmsim        ;; # arm simulator in gdb
15    arm1136js)    $2=gdbarmsim        ;; # arm simulator in gdb
16    armcortexa9)  $2=gdbarmsim        ;; # arm simulator in gdb
[dbe50fd]17    c3xsim)       $2=c4xsim           ;; # TI C3x Simulator in gdb
[86abd5b9]18    csb637)       $2=csb337           ;; # Cogent CSB637
[a533890]19    gen68360_040) $2=gen68360         ;; # m68k - 68360 in companion mode
[86abd5b9]20    h8sxsim)      $2=h8sim            ;; # h8sim built for h8sx
[5ca23e5e]21    pghplus)      $2=tqm8xx           ;; # powerpc - mpc8xx custom board
22    tqm8xx_stk8xx) $2=tqm8xx          ;; # powerpc - tqm8xx on starter kit
[224aebb3]23    pgh360)       $2=gen68360         ;; # m68k - 68360 custom board
24    m5484FireEngine) $2=genmcf548x    ;; # m68k - mcf548x eva board
[a533890]25    mbx8*)        $2=mbx8xx           ;; # MBX821/MBX860 board
[d273d78a]26    mcp750)       $2=motorola_powerpc ;; # Motorola PPC board variant
[174eed8c]27    mtx603e)      $2=motorola_powerpc ;; # Motorola PPC board variant
[d273d78a]28    mvme162lx)    $2=mvme162          ;; # m68k - mvme162 board variant
[a533890]29    mvme2100)     $2=motorola_powerpc ;; # Motorola PPC board variant
30    mvme2307)     $2=motorola_powerpc ;; # Motorola PPC board variant
[a2a4027]31    m32csim)      $2=m32cbsp          ;; # M32C on gdb simulator
[75b453f]32    p4600)        $2=p4000            ;; # mips - p4000 board w/IDT 4600
33    p4650)        $2=p4000            ;; # mips - p4000 board w/IDT 4650
[b50b3c8]34    pc386dx)      $2=pc386            ;; # i386 - PC w/o FPU
[6d3ab0f]35    pc486)        $2=pc386            ;; # i386 - PC with i486DX
36    pc586)        $2=pc386            ;; # i386 - PC with Pentium
37    pc686)        $2=pc386            ;; # i386 - PC with PentiumPro
[c9b005a9]38    brs5l*)       $2=gen5200          ;; # MPC5200 based board
[a533890]39    pm520*)       $2=gen5200          ;; # MPC5200 based board
[8ba985a]40    icecube)      $2=gen5200          ;; # MPC5200 based board - LITE5200B
[574fb67]41    mpc55??evb)   $2=mpc55xxevb       ;; # MPC5566EVB based board
[f610e83f]42    mpc8349eamds) $2=gen83xx          ;; # MPC8349 based board
[e35c696]43    hsc_cm01)     $2=gen83xx          ;; # MPC8349 based board
[574fb67]44    mpc8313erdb)  $2=gen83xx          ;; # MPC83XX based board
[db58e51]45    rtl22xx_t)    $2=rtl22xx          ;; # rtl22xx bsp in thumb mode
[aa5ddd3]46    lpc24xx_ea)   $2=lpc24xx          ;; # LPC2478 (QVGA Base Board from Embedded Artists)
47    lpc24xx_ncs_rom_int) $2=lpc24xx   ;; # LPC24XX (NCS)
48    lpc24xx_ncs_rom_ext) $2=lpc24xx   ;; # LPC24XX (NCS)
49    lpc24xx_ncs_ram) $2=lpc24xx       ;; # LPC24XX (NCS)
[a533890]50    simcpu32)     $2=sim68000         ;; # BSVC CPU32 variant
[f1cb4fc]51    simsh1)       $2=shsim            ;; # SH1 simulator in GDB
52    simsh2)       $2=shsim            ;; # SH2 simulator in GDB
[f239aa9a]53    simsh2e)       $2=shsim           ;; # SH2e simulator in GDB
[f1cb4fc]54    simsh4)       $2=shsim            ;; # SH4 simulator in GDB
[a533890]55    sis)          $2=erc32            ;; # erc32 SIS simulator
[d273d78a]56    *)            $2=$1;;
[c63a5cf]57  esac]
58)
59
60dnl RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
61dnl convert a bsp alias $1 into its bsp directory RTEMS_BSP_FAMILY
[3959276e]62AC_DEFUN([RTEMS_BSP_ALIAS],
[9c392aa2]63[_RTEMS_BSP_ALIAS(m4_if([$1],,[$RTEMS_BSP],[$1]),
64  m4_if([$2],,[RTEMS_BSP_FAMILY],[$2]))]
[c63a5cf]65)
Note: See TracBrowser for help on using the repository browser.