aboutsummaryrefslogtreecommitdiff
path: root/lt-qcom-linux-automerge
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2019-07-18 14:47:54 +0200
committerNicolas Dechesne <nicolas.dechesne@linaro.org>2019-07-19 05:20:44 +0000
commit9350c74c22248a919aa496d124e6cfa234eadf75 (patch)
treedbe10b6c80bd88ca67281b3628faf8e01635b8d8 /lt-qcom-linux-automerge
parent3c1055b2f70283089d0c37bf24bbaf988a841428 (diff)
lt-qcom-linux-automerge: count DTC warnings for QCOM DTBS
Change-Id: I49ebff8064ddb6a559c9b9c56206906cde445a03 Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Diffstat (limited to 'lt-qcom-linux-automerge')
-rwxr-xr-xlt-qcom-linux-automerge/builders-kernel.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/lt-qcom-linux-automerge/builders-kernel.sh b/lt-qcom-linux-automerge/builders-kernel.sh
index aa2f4014..9e56fbc1 100755
--- a/lt-qcom-linux-automerge/builders-kernel.sh
+++ b/lt-qcom-linux-automerge/builders-kernel.sh
@@ -20,6 +20,9 @@ function build_integration_kernel()
make distclean
make ${KERNEL_CONFIGS}
+
+ # build QCOM DTBS with warnings
+ make W=1 arch/arm64/boot/dts/qcom/ 2>&1 | tee -a qcom-dtbs.log
make -j$(nproc)
}
@@ -49,3 +52,5 @@ build_integration_kernel "arm64" "defconfig"
if [ ! -z ${KERNEL_CI_REPO_URL} ]; then
git push -f ${KERNEL_CI_REPO_URL} ${INTEGRATION_BRANCH}:${KERNEL_CI_BRANCH}
fi
+
+echo "DTBS_WARNINGS=$(sed -n "s/.*: Warning (\(.*\)):.*/\1/p" qcom-dtbs.log | sort | uniq -c | sort -nr)" > kernel-build_result_variables