binman: Forward AddBintools calls to sub entries in cbfs_util
Forward AddBintools calls to sub entries in cbfs_util to collect bintools of sub entries. Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:

committed by
Simon Glass

parent
facc378a86
commit
9069d55c22
@@ -296,3 +296,8 @@ class Entry_cbfs(Entry):
|
|||||||
# so that child.data is used to pack into the FIP.
|
# so that child.data is used to pack into the FIP.
|
||||||
self.ObtainContents(skip_entry=child)
|
self.ObtainContents(skip_entry=child)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
def AddBintools(self, btools):
|
||||||
|
super().AddBintools(btools)
|
||||||
|
for entry in self._entries.values():
|
||||||
|
entry.AddBintools(btools)
|
||||||
|
Reference in New Issue
Block a user