binman: Read the fit entries only once
At present the entries are read twice, once by the entry_Section class
and once by the FIT implementation. This is harmless but can be confusing
when debugging. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
diff --git a/tools/binman/etype/fit.py b/tools/binman/etype/fit.py
index 1b93044..9bc2588 100644
--- a/tools/binman/etype/fit.py
+++ b/tools/binman/etype/fit.py
@@ -185,7 +185,6 @@
self.mkimage = None
def ReadNode(self):
- self.ReadEntries()
super().ReadNode()
def _get_operation(self, subnode):