aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-02 22:31:19 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-02 22:45:27 +0000
commitd5267afa634a4da33f5d5a88c678387a9b7ec1b1 (patch)
tree3e63a3544b0f51f815b0b0e567c77a3ca5bd373c /scripts
parent68e1c567882538c3e183d0863ab87f19431efcea (diff)
downloadopenembedded-core-contrib-d5267afa634a4da33f5d5a88c678387a9b7ec1b1.tar.gz
qemuimage-tests/dmesg: Add exception for error message on qemuarm with 3.8 kernel
With 3.8 kernels we get a harmless error message during kernel boot. For now we can ignore. This allows the tests to pass and ensures we can merge the 3.8 kernel. (From OE-Core rev: da1e094c407353af2ab230c4867c9d8fd68e3161) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/qemuimage-tests/tools/dmesg.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/qemuimage-tests/tools/dmesg.sh b/scripts/qemuimage-tests/tools/dmesg.sh
index 66c022343b..f0c93181bd 100644
--- a/scripts/qemuimage-tests/tools/dmesg.sh
+++ b/scripts/qemuimage-tests/tools/dmesg.sh
@@ -13,7 +13,9 @@ if [ $? -ne 0 ]; then
exit 1
fi
-dmesg | grep -iq "error"
+# For now, ignore mmci-pl18x errors on qemuarm which appeared
+# from the 3.8 kernel and are harmless
+dmesg | grep -v mmci-pl18x | grep -iq "error"
if [ $? -eq 0 ]; then
echo "QEMU: There is some error log in dmesg:"
echo "QEMU: ##### Error Log ######"