mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-27 09:02:20 +00:00
binman: Update IFWI entry to read entries outside constructor
At present this class reads its entries in the constructor. This is not how things should be done now. Update it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
7d645e08d6
commit
afc68a8a4d
1 changed files with 3 additions and 0 deletions
|
@ -48,7 +48,10 @@ class Entry_intel_ifwi(Entry_blob):
|
|||
Entry_blob.__init__(self, section, etype, node)
|
||||
self._convert_fit = fdt_util.GetBool(self._node, 'convert-fit')
|
||||
self._ifwi_entries = OrderedDict()
|
||||
|
||||
def ReadNode(self):
|
||||
self._ReadSubnodes()
|
||||
Entry_blob.ReadNode(self)
|
||||
|
||||
def ObtainContents(self):
|
||||
"""Get the contects for the IFWI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue