[U-Boot] [PATCH 29/34] binman: Update IFWI entry to read entries outside constructor
Simon Glass
sjg at chromium.org
Sat Aug 24 13:23:09 UTC 2019
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 at chromium.org>
---
tools/binman/etype/intel_ifwi.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tools/binman/etype/intel_ifwi.py b/tools/binman/etype/intel_ifwi.py
index e4da3e498a..ef2b35706f 100644
--- a/tools/binman/etype/intel_ifwi.py
+++ b/tools/binman/etype/intel_ifwi.py
@@ -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
--
2.23.0.187.g17f5b7556c-goog
More information about the U-Boot
mailing list