[oe-commits] [openembedded-core] 17/20: parselogs.py: Ignore Skylake graphics firmware load errors on genericx86-64

git at git.openembedded.org git at git.openembedded.org
Thu Aug 18 08:28:47 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit d73a26a71b2b16be06cd9a80a6ba42ffae8412c4
Author: California Sullivan <california.l.sullivan at intel.com>
AuthorDate: Tue Aug 16 22:14:53 2016 -0700

    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.
    
    Signed-off-by: California Sullivan <california.l.sullivan at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/runtime/parselogs.py | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 242cd8c..3899d26 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -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,

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list