summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--README.configure2
-rw-r--r--aclocal/bsp-alias.m43
-rw-r--r--aclocal/check-bsps.m42
4 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6e72859b25..f885e587c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
* aclocal/gcc-pipe.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf
diff --git a/README.configure b/README.configure
index cd0d48b933..62ebd70912 100644
--- a/README.configure
+++ b/README.configure
@@ -182,7 +182,7 @@ no_cpu : no_bsp
mips64orion : p4600 p4650 (p4000 port with either R4600 or R4650)
powerpc : papyrus psim helas403
sh : gensh1
-sparc : erc32
+sparc : erc32 erc32nfp leon1 leon2
any : bare
5. Makefile structure
diff --git a/aclocal/bsp-alias.m4 b/aclocal/bsp-alias.m4
index cbf86363c2..f0530c11cd 100644
--- a/aclocal/bsp-alias.m4
+++ b/aclocal/bsp-alias.m4
@@ -21,6 +21,9 @@ AC_DEFUN(_RTEMS_BSP_ALIAS,
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
*) $2=$1;;
esac]
)
diff --git a/aclocal/check-bsps.m4 b/aclocal/check-bsps.m4
index 36d8164e29..9484c365db 100644
--- a/aclocal/check-bsps.m4
+++ b/aclocal/check-bsps.m4
@@ -28,6 +28,8 @@ AC_MSG_CHECKING([for bsps])
mbx8xx) rtems_bsp="$rtems_bsp mbx821_001 mbx860_002";;
motorola_powerpc) rtems_bsp="$rtems_bsp mvme2307 mcp750";;
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";;
*) $1="[$]$1 $file";;
esac;