summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Karlman <jonas@kwiboo.se>2023-02-20 01:02:03 +0300
committerSimon Glass <sjg@chromium.org>2023-03-08 22:38:48 +0300
commitcbe429bc979cd76c365f0f8442ea1eaba7b473ae (patch)
tree20dffc3bc3a0b15d82421c03ef5263b59d5c4903
parent9dbb02b9d124e03a141de1244c8b4f4843d58840 (diff)
downloadu-boot-cbe429bc979cd76c365f0f8442ea1eaba7b473ae.tar.xz
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>
-rw-r--r--tools/binman/etype/blob_ext.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/binman/etype/blob_ext.py b/tools/binman/etype/blob_ext.py
index fba6271de2..d6b0ca17c3 100644
--- a/tools/binman/etype/blob_ext.py
+++ b/tools/binman/etype/blob_ext.py
@@ -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