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-11-08 23:47:14 +0000
commitf979c500290b7ac38a338693c4856f3ed7930a2b (patch)
treed0ca9e2411323d293cfdbbfd37a1b48c5d2c61f8 /meta/lib/oeqa/runtime/parselogs.py
parenta6b8fda00cabe920e5f961aadabc5a62ef7f6274 (diff)
downloadpoky-f979c500290b7ac38a338693c4856f3ed7930a2b.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) (From OE-Core rev: cc1b341b0a8e834a15c4efe107886ad366f7678c) Signed-off-by: California Sullivan <california.l.sullivan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.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 32cc9f0e6c..116cb0b03d 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -124,7 +124,13 @@ ignore_errors = {
124 'intel-corei7-64' : x86_common, 124 'intel-corei7-64' : x86_common,
125 'crownbay' : x86_common, 125 'crownbay' : x86_common,
126 'genericx86' : x86_common, 126 'genericx86' : x86_common,
127 'genericx86-64' : x86_common, 127 'genericx86-64' : [
128 'Direct firmware load for i915',
129 'Failed to load firmware i915',
130 'Failed to fetch GuC',
131 'Failed to initialize GuC',
132 'The driver is built-in, so to load the firmware you need to',
133 ] + x86_common,
128 'edgerouter' : [ 134 'edgerouter' : [
129 'Fatal server error:', 135 'Fatal server error:',
130 ] + common_errors, 136 ] + common_errors,