diff options
author | Lucian Musat <george.l.musat@intel.com> | 2015-06-10 18:46:49 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-11 23:59:18 +0100 |
commit | 7a4d72dc18ff4ce5b02684026ba1d564a2ab5c41 (patch) | |
tree | 904b21a7a1348fe15060db1f55ab990736ad565e | |
parent | ee663961bb3e22a50580e53b527dab0a72d427a7 (diff) | |
download | poky-7a4d72dc18ff4ce5b02684026ba1d564a2ab5c41.tar.gz |
oeqa/parselogs: Added some more errors to the whitelist.
(From OE-Core rev: 70f514719b1bac2a478bc05afd5382b3a26a419a)
Signed-off-by: Lucian Musat <george.l.musat@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/runtime/parselogs.py | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index e6413666f1..a9ab9a3462 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py | |||
@@ -22,12 +22,18 @@ common_errors = [ | |||
22 | "Failed to load module \"modesetting\"", | 22 | "Failed to load module \"modesetting\"", |
23 | "Failed to load module modesetting", | 23 | "Failed to load module modesetting", |
24 | "Failed to load module \"glx\"", | 24 | "Failed to load module \"glx\"", |
25 | "Failed to load module \"fbdev\"", | ||
26 | "Failed to load module fbdev", | ||
25 | "Failed to load module glx", | 27 | "Failed to load module glx", |
26 | "[drm] Cannot find any crtc or sizes - going 1024x768", | 28 | "[drm] Cannot find any crtc or sizes - going 1024x768", |
27 | "_OSC failed (AE_NOT_FOUND); disabling ASPM", | 29 | "_OSC failed (AE_NOT_FOUND); disabling ASPM", |
28 | "Open ACPI failed (/var/run/acpid.socket) (No such file or directory)", | 30 | "Open ACPI failed (/var/run/acpid.socket) (No such file or directory)", |
29 | "NX (Execute Disable) protection cannot be enabled: non-PAE kernel!", | 31 | "NX (Execute Disable) protection cannot be enabled: non-PAE kernel!", |
30 | "hd.: possibly failed opcode" | 32 | "hd.: possibly failed opcode", |
33 | 'NETLINK INITIALIZATION FAILED', | ||
34 | 'kernel: Cannot find map file', | ||
35 | 'omap_hwmod: debugss: _wait_target_disable failed', | ||
36 | 'VGA arbiter: cannot open kernel arbiter, no multi-card support', | ||
31 | ] | 37 | ] |
32 | 38 | ||
33 | x86_common = [ | 39 | x86_common = [ |
@@ -64,7 +70,24 @@ ignore_errors = { | |||
64 | 'mmci-pl18x: probe of fpga:0b failed with error -22', | 70 | 'mmci-pl18x: probe of fpga:0b failed with error -22', |
65 | 'Failed to load module "glx"' | 71 | 'Failed to load module "glx"' |
66 | ] + common_errors, | 72 | ] + common_errors, |
67 | 'emenlow' : x86_common, | 73 | 'emenlow' : [ |
74 | '[Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness', | ||
75 | '(EE) Failed to load module "psb"', | ||
76 | '(EE) Failed to load module psb', | ||
77 | '(EE) Failed to load module "psbdrv"', | ||
78 | '(EE) Failed to load module psbdrv', | ||
79 | '(EE) open /dev/fb0: No such file or directory', | ||
80 | '(EE) AIGLX: reverting to software rendering', | ||
81 | ] + x86_common, | ||
82 | 'core2_32' : [ | ||
83 | '[Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness', | ||
84 | '(EE) Failed to load module "psb"', | ||
85 | '(EE) Failed to load module psb', | ||
86 | '(EE) Failed to load module "psbdrv"', | ||
87 | '(EE) Failed to load module psbdrv', | ||
88 | '(EE) open /dev/fb0: No such file or directory', | ||
89 | '(EE) AIGLX: reverting to software rendering', | ||
90 | ] + x86_common, | ||
68 | 'crownbay' : x86_common, | 91 | 'crownbay' : x86_common, |
69 | 'genericx86' : x86_common, | 92 | 'genericx86' : x86_common, |
70 | 'genericx86-64' : x86_common, | 93 | 'genericx86-64' : x86_common, |
@@ -73,13 +96,11 @@ ignore_errors = { | |||
73 | ] + common_errors, | 96 | ] + common_errors, |
74 | 'minnow' : [ | 97 | 'minnow' : [ |
75 | 'netlink init failed', | 98 | 'netlink init failed', |
76 | 'NETLINK INITIALIZATION FAILED', | ||
77 | ] + common_errors, | 99 | ] + common_errors, |
78 | 'jasperforest' : [ | 100 | 'jasperforest' : [ |
79 | 'Activated service \'org.bluez\' failed:', | 101 | 'Activated service \'org.bluez\' failed:', |
80 | 'Unable to find NFC netlink family', | 102 | 'Unable to find NFC netlink family', |
81 | 'netlink init failed', | 103 | 'netlink init failed', |
82 | 'NETLINK INITIALIZATION FAILED', | ||
83 | ] + common_errors, | 104 | ] + common_errors, |
84 | } | 105 | } |
85 | 106 | ||