diff options
author | Bin Meng | 2016-12-25 20:52:47 -0800 |
---|---|---|
committer | Bin Meng | 2016-12-26 13:36:23 +0800 |
commit | d26a38fd615466e2d62baa577423ac06d2601d8f (patch) | |
tree | 75a4eb4b26fee917324186b0bd3f4818dced45ab /tools/binman/etype | |
parent | 79e550e0f39144cd9de57a7d8fb71916d2b96f1b (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/etype')
-rw-r--r-- | tools/binman/etype/intel_cmc.py | 3 | ||||
-rw-r--r-- | tools/binman/etype/intel_fsp.py | 3 | ||||
-rw-r--r-- | tools/binman/etype/intel_vga.py | 3 |
3 files changed, 0 insertions, 9 deletions
diff --git a/tools/binman/etype/intel_cmc.py b/tools/binman/etype/intel_cmc.py index 9bce8ae39b9..30676c8ad05 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 d75be5b9563..13c9f05d941 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 d8f270bbd95..6693607f98a 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' |