source: rtems/aclocal/bsp-alias.m4 @ 4bf1801

4.104.114.84.95
Last change on this file since 4bf1801 was 6d3ab0f, checked in by Joel Sherrill <joel.sherrill@…>, on 01/10/00 at 20:56:35

Added pc486 and pc586 as aliases of pc386 with proper cpu flags.

  • Property mode set to 100644
File size: 895 bytes
Line 
1dnl
2dnl  $Id$
3dnl
4
5dnl RTEMS_BSP_ALIAS(BSP_ALIAS,BSP_RETURNED)
6dnl convert a bsp alias $1 into its bsp directory $2
7AC_DEFUN(RTEMS_BSP_ALIAS,
8[
9  # account for "aliased" bsps which share source code
10  case $1 in
11    mcp750)       $2=motorola_powerpc ;; # Motorola PPC board variant
12    mvme2307)     $2=motorola_powerpc ;; # Motorola PPC board variant
13    mvme162lx)    $2=mvme162          ;; # m68k - mvme162 board variant
14    gen68360_040) $2=gen68360         ;; # m68k - 68360 in companion mode
15    p4600)        $2=p4000            ;; # mips64orion - p4000 board w/IDT 4600
16    p4650)        $2=p4000            ;; # mips64orion - p4000 board w/IDT 4650
17    pc486)        $2=pc386            ;; # i386 - PC with i486DX
18    pc586)        $2=pc386            ;; # i386 - PC with Pentium
19    pc686)        $2=pc386            ;; # i386 - PC with PentiumPro
20    *)            $2=$1;;
21  esac
22])
Note: See TracBrowser for help on using the repository browser.