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.
This commit is contained in:
Ralf Corsepius
2006-01-12 03:55:20 +00:00
parent 26e24b5be4
commit a533890722
2 changed files with 12 additions and 11 deletions

View File

@@ -1,5 +1,7 @@
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.
* automake/host.am, automake/local.am, automake/subdirs.am:
Remove depend-am, depend-recursive.

View File

@@ -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]
)