aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Wild <ewild@sysmocom.de>2021-08-09 12:20:30 +0200
committerEric Wild <ewild@sysmocom.de>2021-08-09 12:45:13 +0200
commit5beffa5d915e3a2a821e4d0c239f28f76dddb853 (patch)
tree5a138ac23a69a67e842fb70bb138b25d68237f75
parent30927217291e69f600854d887883c6b54a4a0cc2 (diff)
contrib/jenkins.sh: build ngff_Cardem dfu bootloader
It does fit with some compiler versions, while others overflow the bl region, so just reduce the trace level a bit to make it fits all the time. Change-Id: I168a847da8dfc585aaeef0030f95fc225a713147
-rwxr-xr-xcontrib/jenkins.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 46482f2..5f68cf1 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -32,7 +32,7 @@ BUILDS+="simtrace/dfu simtrace/trace simtrace/cardem "
BUILDS+="qmod/dfu qmod/cardem "
BUILDS+="owhw/dfu owhw/cardem "
BUILDS+="octsimtest/cardem "
-BUILDS+="ngff_cardem/cardem "
+BUILDS+="ngff_cardem/dfu ngff_cardem/cardem "
cd $TOPDIR/firmware
for build in $BUILDS; do
@@ -40,7 +40,12 @@ for build in $BUILDS; do
app=`echo $build | cut -d "/" -f 2`
echo
echo "=============== $board / $app START =============="
- make BOARD="$board" APP="$app"
+ # 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
echo "=============== $board / $app RES:$? =============="
done