summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
authorYanfei Xu <yanfei.xu@windriver.com>2021-04-09 17:03:29 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-04-30 14:37:25 +0100
commit7c25e4c53c6e6d7509d21f8c10fabb66fa1bf2b5 (patch)
treea50af9fb440ec1cb3d2f92e594614b220460dcef /meta/lib/oeqa/runtime
parentf5b9a8206dd14097666409fd2b2cb304f4eea1c7 (diff)
downloadpoky-7c25e4c53c6e6d7509d21f8c10fabb66fa1bf2b5.tar.gz
parselogs: ignore floppy error on qemu-system-x86 at boot stage
We can disable floppy drive by BIOS on a hardware, but an empty floppy drive is connected by default on qemu-system-x86. Linux usually detect the device and modprode the matched floppy.ko at the boot stage. Due to we don't specify a floppy deivce in qemu boot arguments, then the errors about floppy reading comes out. It is harmless and normal, so we could ignore this error message on qemux86. Seen if kernel-modules is included in the image which pulls in the relavent kernel module. https://lists.gnu.org/archive/html/qemu-devel/2021-04/msg01402.html (From OE-Core rev: 0e449143839f8de338b4a18fb27e8380d80e9b2f) Signed-off-by: Yanfei Xu <yanfei.xu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 3359f23ee9351c70997d5e0a17d17d1e47d59623) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r--meta/lib/oeqa/runtime/cases/parselogs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py
index 4714741aff..1bb0425521 100644
--- a/meta/lib/oeqa/runtime/cases/parselogs.py
+++ b/meta/lib/oeqa/runtime/cases/parselogs.py
@@ -88,6 +88,8 @@ qemux86_common = [
88 'tsc: HPET/PMTIMER calibration failed', 88 'tsc: HPET/PMTIMER calibration failed',
89 "modeset(0): Failed to initialize the DRI2 extension", 89 "modeset(0): Failed to initialize the DRI2 extension",
90 "glamor initialization failed", 90 "glamor initialization failed",
91 "blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ)",
92 "floppy: error",
91] + common_errors 93] + common_errors
92 94
93ignore_errors = { 95ignore_errors = {