summaryrefslogtreecommitdiffstats
path: root/aclocal/bsp-alias.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-01-12 03:55:20 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-01-12 03:55:20 +0000
commita53389072227a1efee93e45d6b0fd101ce1c4076 (patch)
tree74f9ad135466ad484c6bd2507c3c28dd1178cf40 /aclocal/bsp-alias.m4
parent2006-01-12 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-a53389072227a1efee93e45d6b0fd101ce1c4076.tar.bz2
2006-01-12 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/bsp-alias.m4: Revert Joel's 2006-01-10 change. Alpha-sort the aliases list.
Diffstat (limited to '')
-rw-r--r--aclocal/bsp-alias.m421
1 files changed, 10 insertions, 11 deletions
diff --git a/aclocal/bsp-alias.m4 b/aclocal/bsp-alias.m4
index 3cd008d451..0eeb916ed1 100644
--- a/aclocal/bsp-alias.m4
+++ b/aclocal/bsp-alias.m4
@@ -7,30 +7,29 @@ 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
+ bare*) $2=bare ;; # EXP: bare-aliases
c3xsim) $2=c4xsim ;; # TI C3x Simulator in gdb
+ erc32nfp) $2=erc32 ;; # erc32 without fpu
+ gen68360_040) $2=gen68360 ;; # m68k - 68360 in companion mode
+ leon1) $2=leon2 ;; # leon without fpu
+ mbx8*) $2=mbx8xx ;; # MBX821/MBX860 board
mcp750) $2=motorola_powerpc ;; # Motorola PPC board variant
- mvme2100) $2=motorola_powerpc ;; # Motorola PPC board variant
- mvme2307) $2=motorola_powerpc ;; # Motorola PPC board variant
mtx603e) $2=motorola_powerpc ;; # Motorola PPC board variant
mvme162lx) $2=mvme162 ;; # m68k - mvme162 board variant
- gen68360_040) $2=gen68360 ;; # m68k - 68360 in companion mode
+ mvme2100) $2=motorola_powerpc ;; # Motorola PPC board variant
+ mvme2307) $2=motorola_powerpc ;; # Motorola PPC board variant
p4600) $2=p4000 ;; # mips - p4000 board w/IDT 4600
p4650) $2=p4000 ;; # mips - p4000 board w/IDT 4650
- mbx8*) $2=mbx8xx ;; # MBX821/MBX860 board
- pm520*) $2=gen5200 ;; # MPC5200 based 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
- sis) $2=erc32 ;; # erc32 simulator in gdb
- erc32nfp) $2=erc32 ;; # erc32 without fpu
- leon1) $2=leon2 ;; # leon without fpu
+ pm520*) $2=gen5200 ;; # MPC5200 based board
+ simcpu32) $2=sim68000 ;; # BSVC CPU32 variant
simsh7032) $2=shsim ;; # SH7032 simulator
simsh7045) $2=shsim ;; # SH7045 simulator
- sis) $2=erc32 ;; # ERC32 SIS simulator
+ sis) $2=erc32 ;; # erc32 SIS simulator
*) $2=$1;;
esac]
)