* [PATCH 1/3] parselogs.py: Ignore Skylake graphics firmware load errors on genericx86-64
@ 2016-08-17 5:14 California Sullivan
2016-08-17 5:14 ` [PATCH 2/3] parselogs.py: Add dmi and ioremap errors to ignore list for core2 California Sullivan
2016-08-17 5:14 ` [PATCH 3/3] parselogs.py: Add failed to setup card detect gpio error on x86 California Sullivan
0 siblings, 2 replies; 3+ messages in thread
From: California Sullivan @ 2016-08-17 5:14 UTC (permalink / raw)
To: openembedded-core
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@intel.com>
---
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,
--
2.5.5
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH 2/3] parselogs.py: Add dmi and ioremap errors to ignore list for core2
2016-08-17 5:14 [PATCH 1/3] parselogs.py: Ignore Skylake graphics firmware load errors on genericx86-64 California Sullivan
@ 2016-08-17 5:14 ` California Sullivan
2016-08-17 5:14 ` [PATCH 3/3] parselogs.py: Add failed to setup card detect gpio error on x86 California Sullivan
1 sibling, 0 replies; 3+ messages in thread
From: California Sullivan @ 2016-08-17 5:14 UTC (permalink / raw)
To: openembedded-core
These errors have been occuring since the introduction of the 4.4
kernel with no apparent functionality loss. Whitelist for now.
Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
---
meta/lib/oeqa/runtime/parselogs.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 3899d26..69d0783 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -110,6 +110,8 @@ ignore_errors = {
'(EE) Failed to load module psbdrv',
'(EE) open /dev/fb0: No such file or directory',
'(EE) AIGLX: reverting to software rendering',
+ 'dmi: Firmware registration failed.',
+ 'ioremap error for 0x78',
] + x86_common,
'intel-corei7-64' : x86_common,
'crownbay' : x86_common,
--
2.5.5
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH 3/3] parselogs.py: Add failed to setup card detect gpio error on x86
2016-08-17 5:14 [PATCH 1/3] parselogs.py: Ignore Skylake graphics firmware load errors on genericx86-64 California Sullivan
2016-08-17 5:14 ` [PATCH 2/3] parselogs.py: Add dmi and ioremap errors to ignore list for core2 California Sullivan
@ 2016-08-17 5:14 ` California Sullivan
1 sibling, 0 replies; 3+ messages in thread
From: California Sullivan @ 2016-08-17 5:14 UTC (permalink / raw)
To: openembedded-core
This error has occurred on the MinnowBoard Max and Turbot since its
inception. It supposedly indicates a non-working SD card reader, but
ours works fine. Whitelist the error.
Signed-off-by: California Sullivan <california.l.sullivan@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 69d0783..9f954bc 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -55,6 +55,7 @@ x86_common = [
'Could not enable PowerButton event',
'probe of LNXPWRBN:00 failed with error -22',
'pmd_set_huge: Cannot satisfy',
+ 'failed to setup card detect gpio',
] + common_errors
qemux86_common = [
--
2.5.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-08-17 2:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-17 5:14 [PATCH 1/3] parselogs.py: Ignore Skylake graphics firmware load errors on genericx86-64 California Sullivan
2016-08-17 5:14 ` [PATCH 2/3] parselogs.py: Add dmi and ioremap errors to ignore list for core2 California Sullivan
2016-08-17 5:14 ` [PATCH 3/3] parselogs.py: Add failed to setup card detect gpio error on x86 California Sullivan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox