summaryrefslogtreecommitdiff
path: root/tools/binman
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2016-12-25 20:52:47 -0800
committerBin Meng <bmeng.cn@gmail.com>2016-12-26 13:36:23 +0800
commitd26a38fd615466e2d62baa577423ac06d2601d8f (patch)
tree75a4eb4b26fee917324186b0bd3f4818dced45ab /tools/binman
parent79e550e0f39144cd9de57a7d8fb71916d2b96f1b (diff)
binman: Remove hard-coded file name for x86 CMC/FSP/VGA
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: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman')
-rw-r--r--tools/binman/etype/intel_cmc.py3
-rw-r--r--tools/binman/etype/intel_fsp.py3
-rw-r--r--tools/binman/etype/intel_vga.py3
3 files changed, 0 insertions, 9 deletions
diff --git a/tools/binman/etype/intel_cmc.py b/tools/binman/etype/intel_cmc.py
index 9bce8ae39b..30676c8ad0 100644
--- a/tools/binman/etype/intel_cmc.py
+++ b/tools/binman/etype/intel_cmc.py
@@ -12,6 +12,3 @@ from blob import Entry_blob
class Entry_intel_cmc(Entry_blob):
def __init__(self, image, etype, node):
Entry_blob.__init__(self, image, etype, node)
-
- def GetDefaultFilename(self):
- return 'cmc.bin'
diff --git a/tools/binman/etype/intel_fsp.py b/tools/binman/etype/intel_fsp.py
index d75be5b956..13c9f05d94 100644
--- a/tools/binman/etype/intel_fsp.py
+++ b/tools/binman/etype/intel_fsp.py
@@ -12,6 +12,3 @@ from blob import Entry_blob
class Entry_intel_fsp(Entry_blob):
def __init__(self, image, etype, node):
Entry_blob.__init__(self, image, etype, node)
-
- def GetDefaultFilename(self):
- return 'fsp.bin'
diff --git a/tools/binman/etype/intel_vga.py b/tools/binman/etype/intel_vga.py
index d8f270bbd9..6693607f98 100644
--- a/tools/binman/etype/intel_vga.py
+++ b/tools/binman/etype/intel_vga.py
@@ -12,6 +12,3 @@ from blob import Entry_blob
class Entry_intel_vga(Entry_blob):
def __init__(self, image, etype, node):
Entry_blob.__init__(self, image, etype, node)
-
- def GetDefaultFilename(self):
- return 'vga.bin'