
On 24/02/2022 02:00, Simon Glass wrote:
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
(no changes since v1)
tools/binman/etype/fit.py | 1 - 1 file changed, 1 deletion(-)
This is actually necessary so that we can use 'self' as the section in Entry.Create(self, ...) when creating /image/* sections, which requires some section-related attributes set by super().ReadNode(). It was one of the things I was planning to fix as well, thanks!
Reviewed-by: Alper Nebi Yasak alpernebiyasak@gmail.com
diff --git a/tools/binman/etype/fit.py b/tools/binman/etype/fit.py index 2b82955226..7b0c94dfee 100644 --- a/tools/binman/etype/fit.py +++ b/tools/binman/etype/fit.py @@ -185,7 +185,6 @@ class Entry_fit(Entry_section): self.mkimage = None
def ReadNode(self):
self.ReadEntries() super().ReadNode()
The entire function can be removed, but I think some stuff from __init__() actually belongs here so I'm fine with keeping it.
def _get_operation(self, subnode):