Remove the build scripts. Build sets are used now.

This commit is contained in:
Chris Johns 2013-02-19 20:02:57 +11:00
parent f6814ffa4f
commit 608cfa77b8
2 changed files with 0 additions and 51 deletions

View File

@ -1,25 +0,0 @@
#! /bin/sh
if [ $# -ne 1 ]; then
echo "error: no prefix provided"
exit 1
fi
targets="arm avr bfin h8300 lm32 m32c m32r m68k mips powerpc sh sparc"
log="rtems4.10-build-tools-results.txt"
echo "RTEMS 4.10 Build Results $(date)" > ${log}
for t in ${targets}
do
../source-builder/sb-set-builder --log=l-${t}.txt \
--prefix=$1 \
--target=${t}-rtems4.10 \
rtems-tools-4.10
if [ $? -eq 0 ]; then
echo "${t}-rtems4.10 passed" >> ${log}
else
echo "${t}-rtems4.10 FAILED" >> ${log}
fi
done

View File

@ -1,26 +0,0 @@
#! /bin/sh
if [ $# -ne 1 ]; then
echo "error: no prefix provided"
exit 1
fi
targets="arm avr bfin h8300 m32c m32r m68k mips powerpc sh sparc"
bad_targets="lm32"
log="rtems4.11-build-tools-results.txt"
echo "RTEMS 4.11 Build Results $(date)" > ${log}
for t in ${targets}
do
../source-builder/sb-set-builder --log=l-${t}.txt \
--prefix=$1 \
--target=${t}-rtems4.11 \
rtems-tools-4.11
if [ $? -eq 0 ]; then
echo "${t}-rtems4.11 passed" >> ${log}
else
echo "${t}-rtems4.11 FAILED" >> ${log}
fi
done