parselogs.py: ignore failure messages for beaglebone edgerouter and mpc8315e-rdb

(From OE-Core rev: fb74c4cd4d123da270e58578644857c9a37b6c64)

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Yi Zhao
2019-01-18 08:11:31 +08:00
committed by Richard Purdie
parent f682cd256f
commit d150f6f5e7

View File

@@ -162,7 +162,23 @@ ignore_errors = {
'The driver is built-in, so to load the firmware you need to',
] + x86_common,
'edgerouter' : [
'not creating \'/sys/firmware/fdt\'',
'Failed to find cpu0 device node',
'Fatal server error:',
'Server terminated with error',
] + common_errors,
'beaglebone-yocto' : [
'Direct firmware load for regulatory.db',
'failed to load regulatory.db',
'l4_wkup_cm',
'Failed to load module "glx"',
'Failed to make EGL context current',
'glamor initialization failed',
] + common_errors,
'mpc8315e-rdb' : [
'of_irq_parse_pci: failed with',
'Fatal server error:',
'Server terminated with error',
] + common_errors,
}