contrib/jenkins.sh: lower trace to make bl fit

We keep running out of rom space, so reduce tracing to nothing for alle
dfu targets, and let's hope newer gcc versions stop producing more
code...

Change-Id: I7d2947c84097035bed00ad489a175d614b4c388e
This commit is contained in:
Eric Wild
2021-09-26 17:24:49 +02:00
committed by Hoernchen
parent 1f75e3881c
commit 301aec51f7
2 changed files with 2 additions and 6 deletions

View File

@@ -40,12 +40,7 @@ for build in $BUILDS; do
app=`echo $build | cut -d "/" -f 2`
echo
echo "=============== $board / $app START =============="
# reduce the trace level so the bl fits
if [ $board = "ngff_cardem" ] && [ $app = "dfu" ]; then
make BOARD="$board" APP="$app" TRACE_LEVEL=2
else
make BOARD="$board" APP="$app"
fi
make BOARD="$board" APP="$app"
echo "=============== $board / $app RES:$? =============="
done