mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
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>
This commit is contained in:
parent
79e550e0f3
commit
d26a38fd61
3 changed files with 0 additions and 9 deletions
|
@ -12,6 +12,3 @@ from blob import Entry_blob
|
||||||
class Entry_intel_cmc(Entry_blob):
|
class Entry_intel_cmc(Entry_blob):
|
||||||
def __init__(self, image, etype, node):
|
def __init__(self, image, etype, node):
|
||||||
Entry_blob.__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):
|
class Entry_intel_fsp(Entry_blob):
|
||||||
def __init__(self, image, etype, node):
|
def __init__(self, image, etype, node):
|
||||||
Entry_blob.__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):
|
class Entry_intel_vga(Entry_blob):
|
||||||
def __init__(self, image, etype, node):
|
def __init__(self, image, etype, node):
|
||||||
Entry_blob.__init__(self, image, etype, node)
|
Entry_blob.__init__(self, image, etype, node)
|
||||||
|
|
||||||
def GetDefaultFilename(self):
|
|
||||||
return 'vga.bin'
|
|
||||||
|
|
Loading…
Reference in a new issue