mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
binman: Use the Makefile for u_boot_ucode_ptr
Remove this file from git and instead build it using the Makefile. Update tools.GetInputFilename() to support reading files from an absolute path, so that we can read the Elf test files easily. Also make sure that the temp directory is report in ELF tests as this was commented out. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
53e22bf38c
commit
f514d8f23d
6 changed files with 26 additions and 14 deletions
|
@ -125,7 +125,7 @@ def GetInputFilename(fname):
|
|||
Returns:
|
||||
The full path of the filename, within the input directory
|
||||
"""
|
||||
if not indir:
|
||||
if not indir or fname[:1] == '/':
|
||||
return fname
|
||||
for dirname in indir:
|
||||
pathname = os.path.join(dirname, fname)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue