]> git.sur5r.net Git - u-boot/commitdiff
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 9bce8ae39b982078d067c96779b56ce41c1360c5..30676c8ad05ac779f2eff419679e082fd9d92aa8 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 d75be5b9563de31dbdeabffec77dfaf821a3eb5b..13c9f05d941e3b5b8010b4be6ae92c5f0fa333eb 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 d8f270bbd9593d66a07c6985fb857693cf5809ab..6693607f98a578423eca76db33f17dcad0233b33 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'