2000-11-13 Jiri Gaisler <jgais@ws.estec.esa.nl>

* README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4:
	Modified to reflect addition of LEON BSPs as well as the
	no-FP ERC32 variant.
This commit is contained in:
Joel Sherrill
2000-11-13 22:51:54 +00:00
parent cd0324cf7b
commit a44f9ca520
4 changed files with 12 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2000-11-13 Jiri Gaisler <jgais@ws.estec.esa.nl>
* README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4:
Modified to reflect addition of LEON BSPs as well as the
no-FP ERC32 variant.
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/gcc-pipe.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf * aclocal/gcc-pipe.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf

View File

@@ -182,7 +182,7 @@ no_cpu : no_bsp
mips64orion : p4600 p4650 (p4000 port with either R4600 or R4650) mips64orion : p4600 p4650 (p4000 port with either R4600 or R4650)
powerpc : papyrus psim helas403 powerpc : papyrus psim helas403
sh : gensh1 sh : gensh1
sparc : erc32 sparc : erc32 erc32nfp leon1 leon2
any : bare any : bare
5. Makefile structure 5. Makefile structure

View File

@@ -21,6 +21,9 @@ AC_DEFUN(_RTEMS_BSP_ALIAS,
pc686) $2=pc386 ;; # i386 - PC with PentiumPro pc686) $2=pc386 ;; # i386 - PC with PentiumPro
pck6) $2=pc386 ;; # i386 - PC with K6 pck6) $2=pc386 ;; # i386 - PC with K6
bare*) $2=bare ;; # EXP: bare-aliases bare*) $2=bare ;; # EXP: bare-aliases
erc32nfp) $2=erc32 ;; # erc32 without fpu
leon1) $2=leon ;; # leon without fpu
leon2) $2=leon ;; # leon with fpu
*) $2=$1;; *) $2=$1;;
esac] esac]
) )

View File

@@ -28,6 +28,8 @@ AC_MSG_CHECKING([for bsps])
mbx8xx) rtems_bsp="$rtems_bsp mbx821_001 mbx860_002";; mbx8xx) rtems_bsp="$rtems_bsp mbx821_001 mbx860_002";;
motorola_powerpc) rtems_bsp="$rtems_bsp mvme2307 mcp750";; motorola_powerpc) rtems_bsp="$rtems_bsp mvme2307 mcp750";;
pc386) rtems_bsp="$rtems_bsp pc386 pc486 pc586 pc686 pck6";; pc386) rtems_bsp="$rtems_bsp pc386 pc486 pc586 pc686 pck6";;
erc32) rtems_bsp="$rtems_bsp erc32 erc32nfp";;
leon) rtems_bsp="$rtems_bsp leon1 leon2";;
sim68000) rtems_bsp="$rtems_bsp sim68000 simcpu32";; sim68000) rtems_bsp="$rtems_bsp sim68000 simcpu32";;
*) $1="[$]$1 $file";; *) $1="[$]$1 $file";;
esac; esac;