source: rtems/aclocal/bsp-alias.m4 @ 1d54d3b

4.104.114.84.95
Last change on this file since 1d54d3b was 78ffe89, checked in by Joel Sherrill <joel.sherrill@…>, on 10/11/99 at 15:50:20

Patch from Ralf Corsepius <corsepiu@…>

Removed all go32 configuration tests.

This patch also comments out some special treatment for Cygwin from
*.m4 macros. According to reports from David Fiddes. these should
not be necessary anymore.

  • Property mode set to 100644
File size: 507 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      mvme162lx)    $2=mvme162  ;;  # mvme162 board variant
12      gen68360_040) $2=gen68360 ;;  # 68360 in companion mode
13      p4600)        $2=p4000    ;;  # p4000 board with IDT 4600
14      p4650)        $2=p4000    ;;  # p4000 board with IDT 4650
15      *)            $2=$1;;
16    esac
17])
Note: See TracBrowser for help on using the repository browser.