mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
binman: Support enabling debug in tests
The elf module can provide some debugging information to assist with figuring out what is going wrong. This is also useful in tests. Update the -D option so that it is passed through to tests as well. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
f689890d8e
commit
7fe9173be7
4 changed files with 23 additions and 6 deletions
|
@ -14,6 +14,9 @@ import struct
|
|||
|
||||
import tools
|
||||
|
||||
# This is enabled from control.py
|
||||
debug = False
|
||||
|
||||
Symbol = namedtuple('Symbol', ['section', 'address', 'size', 'weak'])
|
||||
|
||||
# Used for tests which don't have an ELF file to read
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue