summaryrefslogtreecommitdiffstats
path: root/gcc
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-01 17:47:51 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-01 17:47:51 +0000
commit8e8f55a70e44b3f0132441ea6b78846cedf78820 (patch)
treebd9f9b6bcd105a7b00f88ec5fd836c8d885f16c5 /gcc
parent2009-08-26 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-testing-8e8f55a70e44b3f0132441ea6b78846cedf78820.tar.bz2
2009-09-01 Joel Sherrill <joel.sherrill@OARcorp.com>
* do_one: Use ON_SKYEYE=1 on BSPs that are tested on Skyeye.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rwxr-xr-xgcc/do_one8
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2fba0d7..7258b58 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-01 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * do_one: Use ON_SKYEYE=1 on BSPs that are tested on Skyeye.
+
2009-07-30 Joel Sherrill <joel.sherrill@rtems.org>
* do_one: Set parameters for qemu.
diff --git a/gcc/do_one b/gcc/do_one
index a1fb3ac..cc4509c 100755
--- a/gcc/do_one
+++ b/gcc/do_one
@@ -459,19 +459,19 @@ j_rtems()
mkdir ${bspdir} || exit 1
cd ${bspdir} || exit 1
+ ENABLE_BSP="--enable-rtemsbsp=${bspArg}"
case $bspArg in
multilib)
ENABLE_BSP="--enable-multilib"
MAKE_ARG="-k"
;;
+ edb7312) ENABLE_BSP="${ENABLE_BSP} ON_SKYEYE=1" ;;
+ gumstix) ENABLE_BSP="${ENABLE_BSP} ON_SKYEYE=1" ;;
qemu|pc386)
- ENABLE_BSP="--enable-rtemsbsp=pc386"
ENABLE_BSP="${ENABLE_BSP} USE_COM1_AS_CONSOLE=1"
ENABLE_BSP="${ENABLE_BSP} BSP_PRESS_KEY_FOR_RESET=0"
;;
- *)
- ENABLE_BSP="--enable-rtemsbsp=${bspArg}"
- ;;
+ *) ;;
esac
case ${cpu} in
m32c) RTEMS_ARGS="--disable-ada --disable-posix --disable-networking" ;;