summaryrefslogtreecommitdiff
path: root/tools/binman/control.py
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-06-26 08:18:56 -0600
committerTom Rini <trini@konsulko.com>2025-06-26 08:33:42 -0600
commit2cfbf412a0dc8d788d9bb2d8704ffa939b99e293 (patch)
treef9e205f8d8fa37bbffc6ef68356c5d81edfc207e /tools/binman/control.py
parented2007d27b19171f2ded5a658e8e41ba63c95425 (diff)
parentc1c8d2db436c9d9e8303b9e9cc108e719c6690c4 (diff)
Merge patch series "add a few entries into missing-blob-help"
Bryan Brattlof <bb@ti.com> says: Now that TIFS and DM firmwares are marked as mandatory items for a successful build[0] we should provide some more descriptive help text on where to get the firmware in the event they are not found and add links to more information about them. We do need to expand the regex to allow the '.' dot in 'ti-fs-enc.bin' so we can add it to the list which was the lesser number of lines changed than renaming all these entries to 'tifs' or 'ti-fs' which the current regex will match. Link: https://lore.kernel.org/r/20250612-missing-blob-help-entries-v2-0-36f1c8078155@ti.com
Diffstat (limited to 'tools/binman/control.py')
-rw-r--r--tools/binman/control.py2
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 = ''