summaryrefslogtreecommitdiff
path: root/tools/binman
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2017-03-30 10:58:12 (GMT)
committerBin Meng <bmeng.cn@gmail.com>2017-04-10 02:02:03 (GMT)
commit2b4c65289698705d91e4c601ece3f079c71cf433 (patch)
tree94f1ccb4092ad90ef7c982a1989974f8bfe090e7 /tools/binman
parentcccab03a529ac1bf1a66ff75fb15784005ec8570 (diff)
downloadu-boot-2b4c65289698705d91e4c601ece3f079c71cf433.tar.xz
binman: Remove hard-coded file name for x86 flash-descriptor & intel-me
Now that we have added file names from Kconfig in x86 u-boot.dtsi, update binman to avoid using hard-coded names. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Bin Meng <bmeng.cn@gmail.com> Cc: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'tools/binman')
-rw-r--r--tools/binman/etype/intel_descriptor.py3
-rw-r--r--tools/binman/etype/intel_me.py3
2 files changed, 0 insertions, 6 deletions
diff --git a/tools/binman/etype/intel_descriptor.py b/tools/binman/etype/intel_descriptor.py
index 7f4ea0b..6435749 100644
--- a/tools/binman/etype/intel_descriptor.py
+++ b/tools/binman/etype/intel_descriptor.py
@@ -37,9 +37,6 @@ class Entry_intel_descriptor(Entry_blob):
Entry_blob.__init__(self, image, etype, node)
self._regions = []
- def GetDefaultFilename(self):
- return 'descriptor.bin'
-
def GetPositions(self):
pos = self.data.find(FD_SIGNATURE)
if pos == -1:
diff --git a/tools/binman/etype/intel_me.py b/tools/binman/etype/intel_me.py
index 45ab50c..5e1c799 100644
--- a/tools/binman/etype/intel_me.py
+++ b/tools/binman/etype/intel_me.py
@@ -12,6 +12,3 @@ from blob import Entry_blob
class Entry_intel_me(Entry_blob):
def __init__(self, image, etype, node):
Entry_blob.__init__(self, image, etype, node)
-
- def GetDefaultFilename(self):
- return 'me.bin'