summaryrefslogtreecommitdiff
path: root/tools/binman/elf.py
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-07-29 10:22:42 -0600
committerTom Rini <trini@konsulko.com>2024-07-29 10:22:42 -0600
commit9268c7a5e3e91564739bf0fdfd1df228a0273945 (patch)
treeaa993c364934c571b00e46df077a67559d98a77c /tools/binman/elf.py
parent9366640449ac3ef702b624e2f6f7604754a9082b (diff)
parent20e5399a311eb3aca5cebfd3e494047ed1ceacb8 (diff)
Merge tag 'dm-pull-29jul24' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm
qconfig minor improvement binman support for alternate entries
Diffstat (limited to 'tools/binman/elf.py')
-rw-r--r--tools/binman/elf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/elf.py b/tools/binman/elf.py
index 2ecc95f7eb8..a4694056391 100644
--- a/tools/binman/elf.py
+++ b/tools/binman/elf.py
@@ -275,7 +275,7 @@ def LookupAndWriteSymbols(elf_fname, entry, section, is_elf=False,
return 0
base = syms.get(base_sym)
if not base and not is_elf:
- tout.debug('LookupAndWriteSymbols: no base')
+ tout.debug(f'LookupAndWriteSymbols: no base: elf_fname={elf_fname}, base_sym={base_sym}, is_elf={is_elf}')
return 0
base_addr = 0 if is_elf else base.address
count = 0