summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/parselogs.py
diff options
context:
space:
mode:
authorCalifornia Sullivan <california.l.sullivan@intel.com>2016-08-16 22:14:53 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-18 09:27:53 +0100
commite290a838822a4d84eafa74174b6ed9aa6c41349e (patch)
tree86a6264b7e41838a03acb6b188a73b0414b50062 /meta/lib/oeqa/runtime/parselogs.py
parentf479e3866df545dc48544940e5194b318dfcdbbc (diff)
downloadpoky-e290a838822a4d84eafa74174b6ed9aa6c41349e.tar.gz
parselogs.py: Ignore Skylake graphics firmware load errors on genericx86-64
These errors can't be fixed without adding the firmware to the initramfs and building it into the kernel, which we don't want to do for genericx86-64. Since graphics still work acceptably without the firmware blobs, just ignore the errors for that MACHINE. (From OE-Core rev: d73a26a71b2b16be06cd9a80a6ba42ffae8412c4) Signed-off-by: California Sullivan <california.l.sullivan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/parselogs.py')
-rw-r--r--meta/lib/oeqa/runtime/parselogs.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 242cd8cdd5..3899d26096 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -114,7 +114,13 @@ ignore_errors = {
114 'intel-corei7-64' : x86_common, 114 'intel-corei7-64' : x86_common,
115 'crownbay' : x86_common, 115 'crownbay' : x86_common,
116 'genericx86' : x86_common, 116 'genericx86' : x86_common,
117 'genericx86-64' : x86_common, 117 'genericx86-64' : [
118 'Direct firmware load for i915',
119 'Failed to load firmware i915',
120 'Failed to fetch GuC',
121 'Failed to initialize GuC',
122 'The driver is built-in, so to load the firmware you need to',
123 ] + x86_common,
118 'edgerouter' : [ 124 'edgerouter' : [
119 'Fatal server error:', 125 'Fatal server error:',
120 ] + common_errors, 126 ] + common_errors,