From 85c4c34dc92a8b545d376d00ec66990457556e9b Mon Sep 17 00:00:00 2001 From: Bryan Brattlof Date: Thu, 12 Jun 2025 06:38:53 -0500 Subject: binman: allow '.' to be included in the missing blob tags Extend the regex to add periods '.' in the tag so entries like ti-fs-enc.bin can be represented in the missing-blob-help file. Signed-off-by: Bryan Brattlof --- tools/binman/control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/binman/control.py') diff --git a/tools/binman/control.py b/tools/binman/control.py index 1946656f7d3..e5bd7889806 100644 --- a/tools/binman/control.py +++ b/tools/binman/control.py @@ -97,7 +97,7 @@ def _ReadMissingBlobHelp(): return tag, msg my_data = pkg_resources.resource_string(__name__, 'missing-blob-help') - re_tag = re.compile('^([-a-z0-9]+):$') + re_tag = re.compile(r"^([-\.a-z0-9]+):$") result = {} tag = None msg = '' -- cgit v1.2.3