[oe-commits] [openembedded-core] 02/27: parselogs.py: Whitelist iwlwifi firmware load error messages

git at git.openembedded.org git at git.openembedded.org
Wed Dec 7 10:38:29 UTC 2016


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

commit 7df570c2310efac8f9898da15deaac2b7df16655
Author: California Sullivan <california.l.sullivan at intel.com>
AuthorDate: Tue Nov 29 12:28:18 2016 -0800

    parselogs.py: Whitelist iwlwifi firmware load error messages
    
    The iwlwifi module of any given kernel has a minimum and maximum
    supported firmware version. The kernel begins by attempting to load the
    maximum version, and decrements until it is successful. The 4.8 kernel's
    maximum supported firmware version is 24, but thus far only 22 has been
    released, meaning we get errors for 24 and 23.
    
    Filter out iwlwifi firmware load error messages, as they are not
    necessarily indicative of real problems.
    
    Signed-off-by: California Sullivan <california.l.sullivan at intel.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/lib/oeqa/runtime/parselogs.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 58f62da..8610863 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -58,6 +58,7 @@ x86_common = [
     'failed to setup card detect gpio',
     'amd_nb: Cannot enumerate AMD northbridges',
     'failed to retrieve link info, disabling eDP',
+    'Direct firmware load for iwlwifi',
 ] + common_errors
 
 qemux86_common = [

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


More information about the Openembedded-commits mailing list