summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-08-20 23:51:08 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-08-20 23:51:08 +0000
commit310fee67244b818fb914d3aae6db4ce70d539244 (patch)
treecc017bc7362f66ec5d02ab51845975d39db58364 /cpukit
parent2002-08-20 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-310fee67244b818fb914d3aae6db4ce70d539244.tar.bz2
2002-08-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/bsp-alias.m4: Remove.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/aclocal/bsp-alias.m439
2 files changed, 4 insertions, 39 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 0927cdd64f..79c14002be 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2002-08-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * aclocal/bsp-alias.m4: Remove.
+
2002-08-07 Joel Sherrill <joel@OARcorp.com>
* aclocal/version.m4: Updated to rtems-ss-20020807.
diff --git a/cpukit/aclocal/bsp-alias.m4 b/cpukit/aclocal/bsp-alias.m4
deleted file mode 100644
index 3c1c835524..0000000000
--- a/cpukit/aclocal/bsp-alias.m4
+++ /dev/null
@@ -1,39 +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
- pc386dx) $2=pc386 ;; # i386 - PC w/o FPU
- 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
- erc32nfp) $2=erc32 ;; # erc32 without fpu
- leon1) $2=leon ;; # leon without fpu
- leon2) $2=leon ;; # leon with fpu
- simsh7032) $2=shsim ;; # SH7032 simulator
- simsh7045) $2=shsim ;; # SH7045 simulator
- *) $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(m4_if([$1],,[$RTEMS_BSP],[$1]),
- m4_if([$2],,[RTEMS_BSP_FAMILY],[$2]))]
-)