From 2e490248967a46fe570df98ac1ec6ca7f37c15ed Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Mon, 30 Sep 2024 08:46:54 -0700 Subject: [PATCH] python: cbl_gen_build_report: Ignore warning from LoongArch EDK2 Signed-off-by: Nathan Chancellor --- python/scripts/cbl_gen_build_report.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/scripts/cbl_gen_build_report.py b/python/scripts/cbl_gen_build_report.py index 412ff8ec..e853bebf 100755 --- a/python/scripts/cbl_gen_build_report.py +++ b/python/scripts/cbl_gen_build_report.py @@ -112,6 +112,8 @@ def generate_warnings(log_folder, src_folder): 'Activated 64 bits per cluster. Windows does not support this', # Python 3.12 warnings, not ClangBuiltLinux related 'SyntaxWarning: invalid escape sequence', + # Warning from LoongArch firmware, who cares? + 'Error: Image at [0-9A-F]+ start failed: Not Found', ] ignore_re = re.compile('|'.join(ignore)) warnings = {}