summaryrefslogtreecommitdiffstats
path: root/macros/bsp-alias.m4
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-11-02 15:44:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-11-02 15:44:04 +0000
commit2e0fd4273d942d48194c27530a67cd5323c80812 (patch)
tree076d11c8567fc9d138dbfc50e8c6d1c20e74252c /macros/bsp-alias.m4
parent2000-11-01 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-2e0fd4273d942d48194c27530a67cd5323c80812.tar.bz2
2000-11-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/*: Replace with contents of macros/*.m4 * macros/: Remove. * aclocal/ar-s.m4 aclocal/tool-prefix.m4: Remove. * Makefile.am: Reflect changes to aclocal/ and macros/.
Diffstat (limited to 'macros/bsp-alias.m4')
-rw-r--r--macros/bsp-alias.m433
1 files changed, 0 insertions, 33 deletions
diff --git a/macros/bsp-alias.m4 b/macros/bsp-alias.m4
deleted file mode 100644
index cbf86363c2..0000000000
--- a/macros/bsp-alias.m4
+++ /dev/null
@@ -1,33 +0,0 @@
-dnl
-dnl $Id$
-dnl
-
-dnl _RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
-dnl Internal subroutine to RTEMS_BSP_ALIAS
-AC_DEFUN(_RTEMS_BSP_ALIAS,
-[# account for "aliased" bsps which share source code
- case $1 in
- simcpu32) $2=sim68000 ;; # BSVC CPU32 variant
- c3xsim) $2=c4xsim ;; # TI C3x Simulator in gdb
- mcp750) $2=motorola_powerpc ;; # Motorola PPC board variant
- mvme2307) $2=motorola_powerpc ;; # Motorola PPC board variant
- mvme162lx) $2=mvme162 ;; # m68k - mvme162 board variant
- gen68360_040) $2=gen68360 ;; # m68k - 68360 in companion mode
- p4600) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4600
- p4650) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4650
- mbx8*) $2=mbx8xx ;; # MBX821/MBX860 board
- pc486) $2=pc386 ;; # i386 - PC with i486DX
- pc586) $2=pc386 ;; # i386 - PC with Pentium
- pc686) $2=pc386 ;; # i386 - PC with PentiumPro
- pck6) $2=pc386 ;; # i386 - PC with K6
- bare*) $2=bare ;; # EXP: bare-aliases
- *) $2=$1;;
- esac]
-)
-
-dnl RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
-dnl convert a bsp alias $1 into its bsp directory RTEMS_BSP_FAMILY
-AC_DEFUN(RTEMS_BSP_ALIAS,
-[_RTEMS_BSP_ALIAS(ifelse([$1],,[$RTEMS_BSP],[$1]),
- ifelse([$2],,[RTEMS_BSP_FAMILY],[$2]))]
-)