From: Bryan Brattlof Date: Thu, 12 Jun 2025 11:38:53 +0000 (-0500) Subject: binman: allow '.' to be included in the missing blob tags X-Git-Tag: v2025.10-rc1~91^2~33^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85c4c34dc92a8b545d376d00ec66990457556e9b;p=pandora-u-boot.git 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 --- 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 = ''