Skip to content
Snippets Groups Projects
Commit d26a38fd authored by Bin Meng's avatar Bin Meng
Browse files

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: default avatarBin Meng <bmeng.cn@gmail.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 79e550e0
No related branches found
No related tags found
No related merge requests found
......@@ -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'
......@@ -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'
......@@ -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'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment