diff options
author | Bryan Brattlof <bb@ti.com> | 2025-06-12 06:38:53 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-26 08:18:48 -0600 |
commit | 85c4c34dc92a8b545d376d00ec66990457556e9b (patch) | |
tree | c5f4e7a9b92fe7c3a3ba1d8db6d5605d95c14d83 /tools/binman/control.py | |
parent | cf744bda69772cae34a48ee2d19eefd68231f09d (diff) |
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 <bb@ti.com>
Diffstat (limited to 'tools/binman/control.py')
-rw-r--r-- | tools/binman/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 = '' |