Script to build all supported archs for 4.10.

This commit is contained in:
Chris Johns 2012-11-06 04:08:34 +11:00
parent 010f47cc57
commit 456592cffe

17
rtems/build-4.10-targets.sh Executable file
View File

@ -0,0 +1,17 @@
#! /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"
for t in ${targets}
do
../source-builder/sb-set-builder --log=l-${t}.txt \
--prefix=$1 \
--target=${t}-rtems4.10 \
rtems-tools-4.10
done