]> code.ossystems Code Review - openembedded-core.git/commitdiff
parselogs.py: Ignore Skylake graphics firmware load errors on genericx86-64
authorCalifornia Sullivan <california.l.sullivan@intel.com>
Wed, 17 Aug 2016 05:14:53 +0000 (22:14 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 18 Aug 2016 08:27:14 +0000 (09:27 +0100)
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.

Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/runtime/parselogs.py

index 242cd8cdd56130a9ef231a5b3fe99d56830929da..3899d260966b6e749d142a407f073801eb2d225e 100644 (file)
@@ -114,7 +114,13 @@ ignore_errors = {
     'intel-corei7-64' : x86_common,
     'crownbay' : x86_common,
     'genericx86' : x86_common,
-    'genericx86-64' : x86_common,
+    'genericx86-64' : [
+        'Direct firmware load for i915',
+        'Failed to load firmware i915',
+        'Failed to fetch GuC',
+        'Failed to initialize GuC',
+        'The driver is built-in, so to load the firmware you need to',
+        ] + x86_common,
     'edgerouter' : [
         'Fatal server error:',
         ] + common_errors,