diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-22 22:57:49 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-23 12:06:52 +0100 |
commit | eb9264cf31c5b11831f9cdcaac8d533e2296290b (patch) | |
tree | f2a1532ff4163bde0115da4d9f1e2dcb7c1f4eee /meta | |
parent | e7888878eec21514fe88b7e38dcfcef45ce991c3 (diff) | |
download | poky-eb9264cf31c5b11831f9cdcaac8d533e2296290b.tar.gz |
oeqa/parselogs: Ignore device node warnings on mips
THe newner kernels have ope firmware support enabled which leads to warnings
during boot on mips. These aren't interesting and we should ignore them.
(From OE-Core rev: 4ba9a6ffb4e7f6c7eee47aa13252fd981cfe5618)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/parselogs.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/parselogs.py b/meta/lib/oeqa/runtime/cases/parselogs.py index c4d347d955..1f36c61081 100644 --- a/meta/lib/oeqa/runtime/cases/parselogs.py +++ b/meta/lib/oeqa/runtime/cases/parselogs.py | |||
@@ -86,9 +86,11 @@ ignore_errors = { | |||
86 | 'qemumips' : [ | 86 | 'qemumips' : [ |
87 | 'Failed to load module "glx"', | 87 | 'Failed to load module "glx"', |
88 | 'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)', | 88 | 'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)', |
89 | 'cacheinfo: Failed to find cpu0 device node', | ||
89 | ] + common_errors, | 90 | ] + common_errors, |
90 | 'qemumips64' : [ | 91 | 'qemumips64' : [ |
91 | 'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)', | 92 | 'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)', |
93 | 'cacheinfo: Failed to find cpu0 device node', | ||
92 | ] + common_errors, | 94 | ] + common_errors, |
93 | 'qemuppc' : [ | 95 | 'qemuppc' : [ |
94 | 'PCI 0000:00 Cannot reserve Legacy IO [io 0x0000-0x0fff]', | 96 | 'PCI 0000:00 Cannot reserve Legacy IO [io 0x0000-0x0fff]', |