X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=tools%2Fbinman%2Fetype%2Fsection.py;h=787257d3ec17790506b2a75aa100dc3514d1cdc6;hb=078ab1a2f5a9901f5f9983163d4f98b8d94bfda0;hp=139fcad51af9f30efe413a9fb005447c0053b94b;hpb=3b0c3821d6401106cc873a6c27a8ee31a8d466a4;p=u-boot diff --git a/tools/binman/etype/section.py b/tools/binman/etype/section.py index 139fcad51a..787257d3ec 100644 --- a/tools/binman/etype/section.py +++ b/tools/binman/etype/section.py @@ -17,8 +17,15 @@ class Entry_section(Entry): Entry.__init__(self, image, etype, node) self._section = bsection.Section(node.name, node) + def ProcessFdt(self, fdt): + return self._section.ProcessFdt(fdt) + + def AddMissingProperties(self): + Entry.AddMissingProperties(self) + self._section.AddMissingProperties() + def ObtainContents(self): - self._section.GetEntryContents() + return self._section.GetEntryContents() def GetData(self): return self._section.GetData() @@ -42,6 +49,10 @@ class Entry_section(Entry): """Write symbol values into binary files for access at run time""" self._section.WriteSymbols() + def SetCalculatedProperties(self): + Entry.SetCalculatedProperties(self) + self._section.SetCalculatedProperties() + def ProcessContents(self): self._section.ProcessEntryContents() super(Entry_section, self).ProcessContents()