mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
oeqa/runtime: Fixed a problem in logparser where it failed to whitelist some common errors.
And some minor tweaks like moving some errors from qemu to common. (From OE-Core rev: c25474be02a562585ded66a6d538aee21056f628) 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>
This commit is contained in:
committed by
Richard Purdie
parent
6ad040a522
commit
b7a9a06b2d
@@ -13,8 +13,8 @@ common_errors = [
|
|||||||
"usbhid: probe of ",
|
"usbhid: probe of ",
|
||||||
"_OSC failed (AE_ERROR)",
|
"_OSC failed (AE_ERROR)",
|
||||||
"_OSC failed (AE_SUPPORT)",
|
"_OSC failed (AE_SUPPORT)",
|
||||||
"AE_ALREADY_EXISTS"
|
"AE_ALREADY_EXISTS",
|
||||||
"ACPI _OSC request failed (AE_SUPPORT)"
|
"ACPI _OSC request failed (AE_SUPPORT)",
|
||||||
"can\'t disable ASPM",
|
"can\'t disable ASPM",
|
||||||
"Failed to load module \"vesa\"",
|
"Failed to load module \"vesa\"",
|
||||||
"Failed to load module vesa",
|
"Failed to load module vesa",
|
||||||
@@ -23,6 +23,9 @@ common_errors = [
|
|||||||
"Failed to load module \"glx\"",
|
"Failed to load module \"glx\"",
|
||||||
"Failed to load module glx",
|
"Failed to load module glx",
|
||||||
"[drm] Cannot find any crtc or sizes - going 1024x768",
|
"[drm] Cannot find any crtc or sizes - going 1024x768",
|
||||||
|
"_OSC failed (AE_NOT_FOUND); disabling ASPM",
|
||||||
|
"Open ACPI failed (/var/run/acpid.socket) (No such file or directory)",
|
||||||
|
"NX (Execute Disable) protection cannot be enabled: non-PAE kernel!",
|
||||||
"hd.: possibly failed opcode"
|
"hd.: possibly failed opcode"
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -35,8 +38,6 @@ x86_common = [
|
|||||||
|
|
||||||
qemux86_common = [
|
qemux86_common = [
|
||||||
'Fast TSC calibration',
|
'Fast TSC calibration',
|
||||||
'_OSC failed (AE_NOT_FOUND); disabling ASPM',
|
|
||||||
'Open ACPI failed (/var/run/acpid.socket) (No such file or directory)',
|
|
||||||
'wrong ELF class',
|
'wrong ELF class',
|
||||||
] + common_errors
|
] + common_errors
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user