diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-08-30 14:49:48 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-01 22:33:07 +0100 |
commit | 58e85c60cd15cf4c0b47cddcf507543461c1a328 (patch) | |
tree | 53845c5922cf2e8bceaccf34240844ebd48410e3 /meta/lib/oeqa/runtime | |
parent | 6883a667962c130b3d130671dabf47f1554922af (diff) | |
download | poky-58e85c60cd15cf4c0b47cddcf507543461c1a328.tar.gz |
qemu: switch to '-vga std' emulated hardware from vmware/cirrus for x86/mips
This is the qemu default since qemu 2.2, is generally supported better,
and is recommended by upstream. It also has already been in use for arm/risc
and ovmf.
Additional information:
https://bugzilla.yoctoproject.org/show_bug.cgi?id=13466
https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
'-vga virtio' emulated hardware remains in use when virgl is enabled via a runqemu override.
Also, adjust the error whitelist, as there is a number of new messages
coming from the drivers that are not actual errors.
(From OE-Core rev: 73cb104f3307736f4922f2e0c9648f9b2d3b3b6b)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.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.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py index 19c9c52a0a..15343d7abb 100644 --- a/meta/lib/oeqa/runtime/cases/parselogs.py +++ b/meta/lib/oeqa/runtime/cases/parselogs.py | |||
@@ -83,6 +83,10 @@ qemux86_common = [ | |||
83 | 'amd_nb: Cannot enumerate AMD northbridges', | 83 | 'amd_nb: Cannot enumerate AMD northbridges', |
84 | 'uvesafb: 5000 ms task timeout, infinitely waiting', | 84 | 'uvesafb: 5000 ms task timeout, infinitely waiting', |
85 | 'tsc: HPET/PMTIMER calibration failed', | 85 | 'tsc: HPET/PMTIMER calibration failed', |
86 | "modeset(0): Failed to initialize the DRI2 extension", | ||
87 | "uvesafb: cannot reserve video memory at", | ||
88 | "uvesafb: probe of uvesafb.0 failed with error", | ||
89 | "glamor initialization failed", | ||
86 | ] + common_errors | 90 | ] + common_errors |
87 | 91 | ||
88 | ignore_errors = { | 92 | ignore_errors = { |