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.
This commit is contained in:
Joel Sherrill
2008-10-02 21:44:50 +00:00
parent e2e736ba62
commit a2a40272d2
4 changed files with 21 additions and 17 deletions

View File

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

View File

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

View File

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

View File

@@ -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"