diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-12-25 20:52:47 -0800 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-12-26 13:36:23 +0800 |
commit | d26a38fd615466e2d62baa577423ac06d2601d8f (patch) | |
tree | 75a4eb4b26fee917324186b0bd3f4818dced45ab /tools | |
parent | 79e550e0f39144cd9de57a7d8fb71916d2b96f1b (diff) | |
download | u-boot-d26a38fd615466e2d62baa577423ac06d2601d8f.zip u-boot-d26a38fd615466e2d62baa577423ac06d2601d8f.tar.gz u-boot-d26a38fd615466e2d62baa577423ac06d2601d8f.tar.bz2 |
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')
-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 9bce8ae..30676c8 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 d75be5b..13c9f05 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 d8f270b..6693607 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' |