[oe-commits] [openembedded-core] 13/28: parselogs.py: Add amd_nb error to x86_common whitelist

git at git.openembedded.org git at git.openembedded.org
Wed Sep 28 09:17:59 UTC 2016


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

commit 9c432dae1045a087f8eb2de7c9bd3a9cbd46c459
Author: California Sullivan <california.l.sullivan at intel.com>
AuthorDate: Fri Sep 23 11:15:00 2016 -0700

    parselogs.py: Add amd_nb error to x86_common whitelist
    
    This has always silently failed on hardware without AMD Northbridge,
    and a recent kernel patch made it not silent. It would be ideal to only
    whitelist the error for genericx86 MACHINEs and disable the CONFIG
    option that enables it in intel-* MACHINEs, but in order to disable
    this configuration option we would have to enable EXPERT and
    DEBUG_KERNEL, which we don't want. Instead just whitelist it on all
    x86 MACHINEs.
    
    Fixes [YOCTO #10261].
    
    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 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 763c42f..2d4a133 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -56,6 +56,7 @@ x86_common = [
     'probe of LNXPWRBN:00 failed with error -22',
     'pmd_set_huge: Cannot satisfy',
     'failed to setup card detect gpio',
+    'amd_nb: Cannot enumerate AMD northbridges',
 ] + 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