mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
binman: Remove redundant SetAllowFakeBlob from blob-ext entry
Entry_blob_ext contains an implementation of SetAllowFakeBlob that is identical to the one in the base Entry class, remove it. Signed-off-by: Jonas Karlman <jonas@kwiboo.se> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
9dbb02b9d1
commit
cbe429bc97
1 changed files with 0 additions and 8 deletions
|
@ -26,11 +26,3 @@ class Entry_blob_ext(Entry_blob):
|
|||
def __init__(self, section, etype, node):
|
||||
Entry_blob.__init__(self, section, etype, node)
|
||||
self.external = True
|
||||
|
||||
def SetAllowFakeBlob(self, allow_fake):
|
||||
"""Set whether the entry allows to create a fake blob
|
||||
|
||||
Args:
|
||||
allow_fake_blob: True if allowed, False if not allowed
|
||||
"""
|
||||
self.allow_fake = allow_fake
|
||||
|
|
Loading…
Reference in a new issue