summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-15 15:53:50 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-15 15:53:50 -0500
commitc912158026fb8801aa2e4e1ab2b002feaed68cd4 (patch)
treed19d8f3885b23277a5fdea5c8378d8f196b1fe97
parentbit_rtems - Determine make parallel jobs dynamically (diff)
downloadrtems-testing-c912158026fb8801aa2e4e1ab2b002feaed68cd4.tar.bz2
bit_ALL - turn off cvs updates
-rwxr-xr-xrtems/bit_ALL13
1 files changed, 7 insertions, 6 deletions
diff --git a/rtems/bit_ALL b/rtems/bit_ALL
index a734f47..69db51f 100755
--- a/rtems/bit_ALL
+++ b/rtems/bit_ALL
@@ -3,21 +3,22 @@
# Do a full test sweep using the other helper scripts
#
-all_confs=no
-do_cvs_update=yes
+all_confs=yes
+do_update=no
testdir=`pwd`
-# update all the add-ons
-if [ ${do_cvs_update} = yes ] ; then
+# update RTEMS and all the add-ons
+# TODO: Does it make sense to automate updating with git?
+if [ ${do_update} = yes ] ; then
cd ${testdir}/rtems
- cvs up -Pd 2>&1 | grep -v cvs
+ # TODO: Replace with git pull
for addon in class-examples examples examples-v2 rtems-addon-packages \
network-demos ada-examples
do
if [ -d ${addon} ] ; then
cd ${testdir}/${addon}
- cvs up -Pd 2>&1 | grep -v cvs
+ # TODO: Replace with git pull
fi
done
fi