summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-25 19:51:23 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-25 19:51:23 +0000
commitf1cb4fc84304698b5d99ea0bad3aa492b4fced07 (patch)
tree4b03ff2f2ee913121ec707fc5207808d9265c2a6
parent2008-09-25 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-f1cb4fc84304698b5d99ea0bad3aa492b4fced07.tar.bz2
2008-09-25 Joel Sherrill <joel.sherrill@oarcorp.com>
* README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Recognize the the GDB SuperH simulator is just an architectural simulator and does not include devices. Rename existing simulator BSP configurations to simsh1 and simsh2 and add simsh4.
Diffstat (limited to '')
-rw-r--r--ChangeLog7
-rw-r--r--README.configure2
-rw-r--r--aclocal/bsp-alias.m45
-rw-r--r--aclocal/check-bsps.m42
4 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 5a2a89ccdc..6af8ade28c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-09-25 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4:
+ Recognize the the GDB SuperH simulator is just an architectural
+ simulator and does not include devices. Rename existing simulator BSP
+ configurations to simsh1 and simsh2 and add simsh4.
+
2008-09-24 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1324/bsps
diff --git a/README.configure b/README.configure
index 583643bbbc..e20999d19e 100644
--- a/README.configure
+++ b/README.configure
@@ -207,7 +207,7 @@ powerpc : brs5l ep1a gen5200 gen83xx haleakala hsc_cm01 icecube
designed to handle a variety of boards based on the same
family of system on chips CPUs
-sh : gensh1 gensh2 gensh4 shsim simsh4 simsh7045
+sh : gensh1 gensh2 gensh4 simsh1 simsh2 simsh4
sparc : erc32 sis leon2 leon3
diff --git a/aclocal/bsp-alias.m4 b/aclocal/bsp-alias.m4
index ab354a53a0..54a63f4137 100644
--- a/aclocal/bsp-alias.m4
+++ b/aclocal/bsp-alias.m4
@@ -38,8 +38,9 @@ AC_DEFUN([_RTEMS_BSP_ALIAS],
rtl22xx_t) $2=rtl22xx ;; # rtl22xx bsp in thumb mode
lpc2478) $2=lpc24xx ;; # LPC2478 (QVGA Base Board from Embedded Artists)
simcpu32) $2=sim68000 ;; # BSVC CPU32 variant
- simsh7032) $2=shsim ;; # SH7032 simulator
- simsh7045) $2=shsim ;; # SH7045 simulator
+ simsh1) $2=shsim ;; # SH1 simulator in GDB
+ simsh2) $2=shsim ;; # SH2 simulator in GDB
+ simsh4) $2=shsim ;; # SH4 simulator in GDB
sis) $2=erc32 ;; # erc32 SIS simulator
*) $2=$1;;
esac]
diff --git a/aclocal/check-bsps.m4 b/aclocal/check-bsps.m4
index 845d97ea2e..00bc314cb1 100644
--- a/aclocal/check-bsps.m4
+++ b/aclocal/check-bsps.m4
@@ -36,7 +36,7 @@ AC_MSG_CHECKING([for available BSPs])
rtl22xx) bsps="rtl22xx rtl22xx_t)";;
lpc24xx) bsps="lpc2478";;
sim68000) bsps="sim68000 simcpu32";;
- shsim) bsps="simsh7032 simsh7045";;
+ shsim) bsps="simsh1 simsh2 simsh4";;
*) bsps="$bsp_family";;
esac;
$1="[$]$1 $bsps"