binman: Forward AddBintools calls to base class
Forward AddBintools calls to base class to collect bintools of base class. Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
9069d55c22
commit
a555965141
@ -100,4 +100,5 @@ class Entry_gbb(Entry):
|
||||
return True
|
||||
|
||||
def AddBintools(self, btools):
|
||||
super().AddBintools(btools)
|
||||
self.futility = self.AddBintool(btools, 'futility')
|
||||
|
@ -144,4 +144,5 @@ class Entry_intel_ifwi(Entry_blob_ext):
|
||||
entry.WriteSymbols(self)
|
||||
|
||||
def AddBintools(self, btools):
|
||||
super().AddBintools(btools)
|
||||
self.ifwitool = self.AddBintool(btools, 'ifwitool')
|
||||
|
@ -192,4 +192,5 @@ class Entry_mkimage(Entry):
|
||||
self._imagename.CheckFakedBlobs(faked_blobs_list)
|
||||
|
||||
def AddBintools(self, btools):
|
||||
super().AddBintools(btools)
|
||||
self.mkimage = self.AddBintool(btools, 'mkimage')
|
||||
|
@ -899,5 +899,6 @@ class Entry_section(Entry):
|
||||
entry.CheckAltFormats(alt_formats)
|
||||
|
||||
def AddBintools(self, btools):
|
||||
super().AddBintools(btools)
|
||||
for entry in self._entries.values():
|
||||
entry.AddBintools(btools)
|
||||
|
@ -98,4 +98,5 @@ class Entry_vblock(Entry_collection):
|
||||
return self.ProcessContentsUpdate(data)
|
||||
|
||||
def AddBintools(self, btools):
|
||||
super().AddBintools(btools)
|
||||
self.futility = self.AddBintool(btools, 'futility')
|
||||
|
Loading…
Reference in New Issue
Block a user