source: rtems/aclocal/bsp-alias.m4 @ 8e57762

4.104.114.84.95
Last change on this file since 8e57762 was 8e57762, checked in by Joel Sherrill <joel.sherrill@…>, on 08/25/00 at 17:27:52

2000-08-17 Ralf Corsepius <corsepiu@…>

  • make/custom/pck6.cfg: New file
  • make/custom/pc486.cfg: Use -m486
  • make/custom/pc586.cfg: Use -mpentium
  • make/custom/pc686.cfg: Use -mmpentiumpro
  • make/custom/i386ex.cfg: Use -msoft-float
  • aclocal/check-bsps.h:
    • Add pck6-BSP
    • Exclude ChangeLog? from being picked up as BSP
  • aclocal/bsp-alias.m4: Add pck6-BSP
  • Property mode set to 100644
File size: 1.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
7AC_DEFUN(_RTEMS_BSP_ALIAS,
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
14    mvme162lx)    $2=mvme162          ;; # m68k - mvme162 board variant
15    gen68360_040) $2=gen68360         ;; # m68k - 68360 in companion mode
16    p4600)        $2=p4000            ;; # mips64orion - p4000 board w/IDT 4600
17    p4650)        $2=p4000            ;; # mips64orion - p4000 board w/IDT 4650
[8ef3818]18    mbx8*)        $2=mbx8xx           ;; # MBX821/MBX860 board
[6d3ab0f]19    pc486)        $2=pc386            ;; # i386 - PC with i486DX
20    pc586)        $2=pc386            ;; # i386 - PC with Pentium
21    pc686)        $2=pc386            ;; # i386 - PC with PentiumPro
[8e57762]22    pck6)         $2=pc386            ;; # i386 - PC with K6
[c63a5cf]23    bare*)        $2=bare             ;; # EXP: bare-aliases
[d273d78a]24    *)            $2=$1;;
[c63a5cf]25  esac]
26)
27
28dnl RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
29dnl convert a bsp alias $1 into its bsp directory RTEMS_BSP_FAMILY
30AC_DEFUN(RTEMS_BSP_ALIAS,
31[_RTEMS_BSP_ALIAS(ifelse([$1],,[$RTEMS_BSP],[$1]),
32  ifelse([$2],,[RTEMS_BSP_FAMILY],[$2]))]
33)
Note: See TracBrowser for help on using the repository browser.