binman: Remove hard-coded file name for x86 CMC/FSP/VGA
authorBin Meng <bmeng.cn@gmail.com>
Mon, 26 Dec 2016 04:52:47 +0000 (20:52 -0800)
committerBin Meng <bmeng.cn@gmail.com>
Mon, 26 Dec 2016 05:36:23 +0000 (13:36 +0800)
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>
tools/binman/etype/intel_cmc.py
tools/binman/etype/intel_fsp.py
tools/binman/etype/intel_vga.py

index 9bce8ae..30676c8 100644 (file)
@@ -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'
index d75be5b..13c9f05 100644 (file)
@@ -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'
index d8f270b..6693607 100644 (file)
@@ -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'