diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-02 22:31:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-02 22:44:16 +0000 |
commit | da1e094c407353af2ab230c4867c9d8fd68e3161 (patch) | |
tree | 24187ceebc71aacfba08adb7c268fec651b25f3f | |
parent | ecf287a80c5ace2c440f8d0089934d59d25dc3ec (diff) | |
download | openembedded-core-da1e094c407353af2ab230c4867c9d8fd68e3161.tar.gz openembedded-core-da1e094c407353af2ab230c4867c9d8fd68e3161.tar.bz2 openembedded-core-da1e094c407353af2ab230c4867c9d8fd68e3161.zip |
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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/qemuimage-tests/tools/dmesg.sh | 4 |
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 ######" |