From: Christian Taedcke Date: Mon, 17 Jul 2023 07:05:53 +0000 (+0200) Subject: binman: Allow cipher node as special section X-Git-Tag: v2025.01-rc5-pxa1908~924^2~91 X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=dcd3d76b7ba9dc571c72bc908eaf925a526bdf20;p=u-boot.git binman: Allow cipher node as special section The new encrypted etype generates a cipher node in the device tree that should not be evaluated by binman, but still be kept in the output device tree. Signed-off-by: Christian Taedcke Reviewed-by: Simon Glass --- diff --git a/tools/binman/etype/section.py b/tools/binman/etype/section.py index 7c4d312c16..fb49e85a76 100644 --- a/tools/binman/etype/section.py +++ b/tools/binman/etype/section.py @@ -179,7 +179,7 @@ class Entry_section(Entry): Returns: bool: True if the node is a special one, else False """ - start_list = ('hash', 'signature', 'template') + start_list = ('cipher', 'hash', 'signature', 'template') return any(node.name.startswith(name) for name in start_list) def ReadNode(self):