diff options
author | California Sullivan <california.l.sullivan@intel.com> | 2016-09-23 11:15:00 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-28 10:16:03 +0100 |
commit | bb744b82c7df3ce3bda9a1b85fc075a20169eca9 (patch) | |
tree | c18a627ac736b294dfd37cf0f87c09c9f1d4cecb /meta | |
parent | 850ded308cd55df6722725c4f8356178ee2ef3ad (diff) | |
download | poky-bb744b82c7df3ce3bda9a1b85fc075a20169eca9.tar.gz |
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].
(From OE-Core rev: 9c432dae1045a087f8eb2de7c9bd3a9cbd46c459)
Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/runtime/parselogs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index 763c42fde9..2d4a13375b 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py | |||
@@ -56,6 +56,7 @@ x86_common = [ | |||
56 | 'probe of LNXPWRBN:00 failed with error -22', | 56 | 'probe of LNXPWRBN:00 failed with error -22', |
57 | 'pmd_set_huge: Cannot satisfy', | 57 | 'pmd_set_huge: Cannot satisfy', |
58 | 'failed to setup card detect gpio', | 58 | 'failed to setup card detect gpio', |
59 | 'amd_nb: Cannot enumerate AMD northbridges', | ||
59 | ] + common_errors | 60 | ] + common_errors |
60 | 61 | ||
61 | qemux86_common = [ | 62 | qemux86_common = [ |