summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-06-12 17:53:45 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-06-12 17:55:11 -0500
commit540440fa8d24b5f4df53598c8d8a7d716a5bcfce (patch)
treee1b292b3702b20ab6c74e8932c6072b9d1a3313e
parentv850sim: New script for GDB v850 simulator (diff)
downloadrtems-testing-540440fa8d24b5f4df53598c8d8a7d716a5bcfce.tar.bz2
common.sh: Add v850 as target
-rw-r--r--rtems/common.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/rtems/common.sh b/rtems/common.sh
index cddce52..389f103 100644
--- a/rtems/common.sh
+++ b/rtems/common.sh
@@ -34,9 +34,9 @@ print_rtems_cpus()
{
echo
echo "CPU is one of the following: "
- echo " arm h8300 i386 lm32"
- echo " m68k nios2 powerpc sh"
- echo " m32c m32r sparc sparc64 tic4x"
+ echo " arm h8300 i386 lm32 m32c"
+ echo " m32r mips nios2 powerpc sh"
+ echo " sparc sparc64 v850"
echo
echo "Formats without a -XXX suffix are the preferred target."
echo
@@ -55,6 +55,7 @@ print_rtems_cpus()
echo " sh-rtems -- Renesas SH (COFF)"
echo " sparc-rtems -- SPARC (ELF)"
echo " sparc64-rtems -- SPARC64 (ELF)"
+ echo " v850-rtems -- Renesas v850 (ELF)"
}
# CPU must be set before we run any of this stuff
@@ -85,6 +86,7 @@ case ${CPU} in
tic4x) ;;
sparc) ;;
sparc64) ;;
+ v850) ;;
native) CPU=unix;;
unix) ;;
*)