浏览代码

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>
Bin Meng 8 年之前
父节点
当前提交
d26a38fd61
共有 3 个文件被更改,包括 0 次插入9 次删除
  1. 0 3
      tools/binman/etype/intel_cmc.py
  2. 0 3
      tools/binman/etype/intel_fsp.py
  3. 0 3
      tools/binman/etype/intel_vga.py

+ 0 - 3
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'

+ 0 - 3
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'

+ 0 - 3
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'