summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--README.configure31
-rw-r--r--aclocal/bsp-alias.m41
-rw-r--r--aclocal/check-bsps.m41
4 files changed, 21 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index 2fc011934f..efe7853de1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * README.configure, aclocal/bsp-alias.m4, aclocal/check-bsps.m4: Add
+ M32C port and m32csim BSP.
+
2008-10-01 Joel Sherrill <joel.sherrill@oarcorp.com>
* VERSION: Bump version to 4.9.99.0
diff --git a/README.configure b/README.configure
index e20999d19e..60916b5055 100644
--- a/README.configure
+++ b/README.configure
@@ -90,25 +90,20 @@ The following targets are supported:
(none) will build the host-based version on Linux, Solaris and HPUX.
- arm-rtems4.9
- tic4x-rtems4.9
- h8300-rtems4.9
- i386-rtems4.9
- m68k-rtems4.9
- mips-rtems4.9
- no_cpu-rtems4.9
- powerpc-rtems4.9
- sh-rtems4.9
- sparc-rtems4.9
+ arm-rtems4.10
+ bfin-rtems4.10
+ h8300-rtems4.10
+ i386-rtems4.10
+ m32c-rtems4.10
+ m68k-rtems4.10
+ mips-rtems4.10
+ no_cpu-rtems4.10
+ powerpc-rtems4.10
+ sh-rtems4.10
+ sparc-rtems4.10
bare see notes
-The cross-compiler is set to $(target)-gcc by default. This can be
-overridden by:
-
-+ using the --program-prefix option to configure to specify the
- string which will prepended to the tool names. Be sure to include
- a trailing "-". For example, to use a m68k-coff toolset, use the
- --program-prefix=m68k-coff- option.
+The cross-compiler is set to $(target)-gcc by default.
To build, run make in the build directory. To specify which bsps to build,
add the RTEMS_BSP="bsp1 bsp2 .." to the make command. Specifying multiple
@@ -182,6 +177,8 @@ i386 : i386ex pc386 pc386dx pc486 pc586 pc686 pck6 ts_386ex
variety of PC configurations including PC-104
based solutions.
+m32c : m32csim
+
m68k : av5282 csb360 gen68302 gen68360 gen68360_040
genmcf548x idp mcf5206elite mcf52235 mcf5235 mcf5239
m5484FireEngine mrm332 mvme136 mvme147s mvme162 mvme162lx
diff --git a/aclocal/bsp-alias.m4 b/aclocal/bsp-alias.m4
index 54a63f4137..fc81c1c408 100644
--- a/aclocal/bsp-alias.m4
+++ b/aclocal/bsp-alias.m4
@@ -21,6 +21,7 @@ AC_DEFUN([_RTEMS_BSP_ALIAS],
mvme162lx) $2=mvme162 ;; # m68k - mvme162 board variant
mvme2100) $2=motorola_powerpc ;; # Motorola PPC board variant
mvme2307) $2=motorola_powerpc ;; # Motorola PPC board variant
+ m32csim) $2=m32cbsp ;; # M32C on gdb simulator
p4600) $2=p4000 ;; # mips - p4000 board w/IDT 4600
p4650) $2=p4000 ;; # mips - p4000 board w/IDT 4650
pc386dx) $2=pc386 ;; # i386 - PC w/o FPU
diff --git a/aclocal/check-bsps.m4 b/aclocal/check-bsps.m4
index 1234ad30fe..4f1df08973 100644
--- a/aclocal/check-bsps.m4
+++ b/aclocal/check-bsps.m4
@@ -37,6 +37,7 @@ AC_MSG_CHECKING([for available BSPs])
lpc24xx) bsps="lpc2478";;
sim68000) bsps="sim68000 simcpu32";;
shsim) bsps="simsh1 simsh2 simsh4";;
+ m32cbsp) bsps="m32csim";;
*) bsps="$bsp_family";;
esac;
$1="[$]$1 $bsps"