diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/parselogs.py')
-rw-r--r-- | meta/lib/oeqa/runtime/parselogs.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index cf0f67c628..7721912a23 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py | |||
@@ -13,8 +13,8 @@ common_errors = [ | |||
13 | "usbhid: probe of ", | 13 | "usbhid: probe of ", |
14 | "_OSC failed (AE_ERROR)", | 14 | "_OSC failed (AE_ERROR)", |
15 | "_OSC failed (AE_SUPPORT)", | 15 | "_OSC failed (AE_SUPPORT)", |
16 | "AE_ALREADY_EXISTS" | 16 | "AE_ALREADY_EXISTS", |
17 | "ACPI _OSC request failed (AE_SUPPORT)" | 17 | "ACPI _OSC request failed (AE_SUPPORT)", |
18 | "can\'t disable ASPM", | 18 | "can\'t disable ASPM", |
19 | "Failed to load module \"vesa\"", | 19 | "Failed to load module \"vesa\"", |
20 | "Failed to load module vesa", | 20 | "Failed to load module vesa", |
@@ -23,6 +23,9 @@ common_errors = [ | |||
23 | "Failed to load module \"glx\"", | 23 | "Failed to load module \"glx\"", |
24 | "Failed to load module glx", | 24 | "Failed to load module glx", |
25 | "[drm] Cannot find any crtc or sizes - going 1024x768", | 25 | "[drm] Cannot find any crtc or sizes - going 1024x768", |
26 | "_OSC failed (AE_NOT_FOUND); disabling ASPM", | ||
27 | "Open ACPI failed (/var/run/acpid.socket) (No such file or directory)", | ||
28 | "NX (Execute Disable) protection cannot be enabled: non-PAE kernel!", | ||
26 | "hd.: possibly failed opcode" | 29 | "hd.: possibly failed opcode" |
27 | ] | 30 | ] |
28 | 31 | ||
@@ -35,8 +38,6 @@ x86_common = [ | |||
35 | 38 | ||
36 | qemux86_common = [ | 39 | qemux86_common = [ |
37 | 'Fast TSC calibration', | 40 | 'Fast TSC calibration', |
38 | '_OSC failed (AE_NOT_FOUND); disabling ASPM', | ||
39 | 'Open ACPI failed (/var/run/acpid.socket) (No such file or directory)', | ||
40 | 'wrong ELF class', | 41 | 'wrong ELF class', |
41 | ] + common_errors | 42 | ] + common_errors |
42 | 43 | ||