mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
parselogs.py: ignore network interface name changing failure
The following error from systemd-udevd is not harmful. It's just because our qemu targets are using eth0. Error changing net interface name 'eth0' to 'enp0s3': Device or resource busy Note that systemd is using a different network interface naming scheme from traditional ethX naming scheme. To make this error message go away, we could symlink /etc/udev/rules.d/80-net-setup-link.rules to /dev/null to recover traditional naming scheme. But I'm not sure if this will cause regression in user experience for systemd users of OE. So just ignore this error message so that parselogs.py test case does not fail. (From OE-Core rev: f1735fed088ddda6517fa4ff6fbd6ef683b14878) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -51,7 +51,8 @@ common_errors = [
|
||||
"Cannot set xattr user.Librepo.DownloadInProgress",
|
||||
"Failed to read /var/lib/nfs/statd/state: Success",
|
||||
"error retry time-out =",
|
||||
"logind: cannot setup systemd-logind helper (-61), using legacy fallback"
|
||||
"logind: cannot setup systemd-logind helper (-61), using legacy fallback",
|
||||
"Error changing net interface name 'eth0' to "
|
||||
]
|
||||
|
||||
video_related = [
|
||||
|
||||
Reference in New Issue
Block a user