projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
399de92
)
tools: binman: Call correct init for Entry_u_boot_spl_with_ucode_ptr
author
Bin Meng
<bmeng.cn@gmail.com>
Wed, 18 Jan 2017 11:32:59 +0000
(
03:32
-0800)
committer
Bin Meng
<bmeng.cn@gmail.com>
Tue, 7 Feb 2017 05:27:17 +0000
(13:27 +0800)
u_boot_spl_with_ucode_ptr is derived from u_boot_with_ucode_ptr,
hence it should call its parent's init.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
tools/binman/etype/u_boot_spl_with_ucode_ptr.py
patch
|
blob
|
history
diff --git
a/tools/binman/etype/u_boot_spl_with_ucode_ptr.py
b/tools/binman/etype/u_boot_spl_with_ucode_ptr.py
index
764c282
..
1c6706d
100644
(file)
--- a/
tools/binman/etype/u_boot_spl_with_ucode_ptr.py
+++ b/
tools/binman/etype/u_boot_spl_with_ucode_ptr.py
@@
-21,7
+21,7
@@
class Entry_u_boot_spl_with_ucode_ptr(Entry_u_boot_with_ucode_ptr):
process.
"""
def __init__(self, image, etype, node):
- Entry_
blob
.__init__(self, image, etype, node)
+ Entry_
u_boot_with_ucode_ptr
.__init__(self, image, etype, node)
self.elf_fname = 'spl/u-boot-spl'
def GetDefaultFilename(self):