diff options
author | Christian Taedcke <christian.taedcke@weidmueller.com> | 2023-07-17 09:05:53 +0200 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2023-07-24 09:34:10 -0600 |
commit | dcd3d76b7ba9dc571c72bc908eaf925a526bdf20 (patch) | |
tree | 9a6b2668cee88216daeb8d53d1aa1f92cd67b7db /tools/binman | |
parent | 473e5206f0b6341d72e725a3eb36adef779a2c22 (diff) | |
download | u-boot-dcd3d76b7ba9dc571c72bc908eaf925a526bdf20.tar.gz u-boot-dcd3d76b7ba9dc571c72bc908eaf925a526bdf20.tar.bz2 u-boot-dcd3d76b7ba9dc571c72bc908eaf925a526bdf20.zip |
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 <christian.taedcke@weidmueller.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman')
-rw-r--r-- | tools/binman/etype/section.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |