mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-23 15:41:22 +02:00
binman: Check missing bintools of Section subclasses
Binman can check for missing binary tools and prints warnings if anything required for an image is missing. The implementation of this for the Section entry only checks the subentries, presumably because Section does not use any binary tools itself. However, this means the check is also skipped for subclasses of Section which might need binary tools. Make sure missing binary tools are checked for subclasses of the Section entry type as well, by calling the parent class' implementation in the relevant Section method. Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ed293c3221
commit
4897d331f3
@ -840,6 +840,7 @@ class Entry_section(Entry):
|
|||||||
Args:
|
Args:
|
||||||
missing_list: List of Bintool objects to be added to
|
missing_list: List of Bintool objects to be added to
|
||||||
"""
|
"""
|
||||||
|
super().check_missing_bintools(missing_list)
|
||||||
for entry in self._entries.values():
|
for entry in self._entries.values():
|
||||||
entry.check_missing_bintools(missing_list)
|
entry.check_missing_bintools(missing_list)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user