mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 12:29:01 +02:00

with 5.4 fd580000.genet has been replaced with fd580000.ethernet in the error text Fixes https://github.com/raspberrypi/linux/issues/3884 Signed-off-by: Khem Raj <raj.khem@gmail.com>
19 lines
720 B
Python
19 lines
720 B
Python
from oeqa.runtime.cases.parselogs import *
|
|
|
|
rpi_errors = [
|
|
'bcmgenet fd580000.genet: failed to get enet-eee clock',
|
|
'bcmgenet fd580000.genet: failed to get enet-wol clock',
|
|
'bcmgenet fd580000.genet: failed to get enet clock',
|
|
'bcmgenet fd580000.ethernet: failed to get enet-eee clock',
|
|
'bcmgenet fd580000.ethernet: failed to get enet-wol clock',
|
|
'bcmgenet fd580000.ethernet: failed to get enet clock',
|
|
]
|
|
|
|
ignore_errors['raspberrypi4'] = rpi_errors + common_errors
|
|
ignore_errors['raspberrypi4-64'] = rpi_errors + common_errors
|
|
ignore_errors['raspberrypi3'] = rpi_errors + common_errors
|
|
ignore_errors['raspberrypi3-64'] = rpi_errors + common_errors
|
|
|
|
class ParseLogsTestRpi(ParseLogsTest):
|
|
pass
|