]> git.sur5r.net Git - u-boot/blobdiff - tools/binman/etype/section.py
binman: Add a ProcessFdt() method
[u-boot] / tools / binman / etype / section.py
index 36b31a849f82af21933d39a861abf496a8455616..9b38738d38d70d62431ac0d26c37c42a70b37a11 100644 (file)
@@ -17,6 +17,9 @@ 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 ObtainContents(self):
         return self._section.GetEntryContents()