mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
parselogs.py: ignore pulseaudio startup warning messages
If set default syslog to rsyslog, we can see below messages in user.log, [pulseaudio] authkey.c: Failed to open cookie file [pulseaudio] authkey.c: Failed to load authentication key They are only warnings when cookie file is not found. And PulseAudio will create it if it doesn't exist. refer: https://wiki.archlinux.org/index.php/PulseAudio/Configuration https://lists.freedesktop.org/archives/pulseaudio-discuss/2014-December/022719.html (From OE-Core rev: f23c375f3d9e9fc15332347123ddb4a7fb7d3745) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
85c30182b1
commit
b2341e6f97
@@ -58,7 +58,9 @@ common_errors = [
|
||||
"Failed to rename network interface",
|
||||
"Failed to process device, ignoring: Device or resource busy",
|
||||
"Cannot find a map file",
|
||||
"[rdrand]: Initialization Failed"
|
||||
"[rdrand]: Initialization Failed",
|
||||
"[pulseaudio] authkey.c: Failed to open cookie file",
|
||||
"[pulseaudio] authkey.c: Failed to load authentication key",
|
||||
]
|
||||
|
||||
video_related = [
|
||||
|
||||
Reference in New Issue
Block a user