aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLukas Funke <lukas.funke@weidmueller.com>2023-10-04 10:56:35 +0200
committerSimon Glass <sjg@chromium.org>2023-10-13 10:15:41 -0700
commitbff16109e3b12dcdc4c9b3c43ec2a9d1100dbe6a (patch)
treedf1f7b0cf6073009991f38f656ad4b75c73d2bc1 /tools
parent3cce6fcea714a089df2221128210a8fa9bb4f0fd (diff)
downloadu-boot-bff16109e3b12dcdc4c9b3c43ec2a9d1100dbe6a.zip
u-boot-bff16109e3b12dcdc4c9b3c43ec2a9d1100dbe6a.tar.gz
u-boot-bff16109e3b12dcdc4c9b3c43ec2a9d1100dbe6a.tar.bz2
binman: bintool: Change make target arg type from string to list
The argument type of `build_from_git` was changed from string to list in d71e7116997f14097735f04cc7847f0a68dbc485. This commit adapts the argument type of all bintools using this function. Signed-off-by: Lukas Funke <lukas.funke@weidmueller.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/binman/btool/bootgen.py2
-rw-r--r--tools/binman/btool/fiptool.py2
-rw-r--r--tools/binman/btool/futility.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/binman/btool/bootgen.py b/tools/binman/btool/bootgen.py
index f2ca552..1bc9f0a 100644
--- a/tools/binman/btool/bootgen.py
+++ b/tools/binman/btool/bootgen.py
@@ -132,6 +132,6 @@ class Bintoolbootgen(bintool.Bintool):
result = self.build_from_git(
'https://github.com/Xilinx/bootgen',
- 'all',
+ ['all'],
'bootgen')
return result
diff --git a/tools/binman/btool/fiptool.py b/tools/binman/btool/fiptool.py
index c80f827..34002f5 100644
--- a/tools/binman/btool/fiptool.py
+++ b/tools/binman/btool/fiptool.py
@@ -109,6 +109,6 @@ class Bintoolfiptool(bintool.Bintool):
return None
result = self.build_from_git(
'https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git',
- 'fiptool',
+ ['fiptool'],
'tools/fiptool/fiptool')
return result
diff --git a/tools/binman/btool/futility.py b/tools/binman/btool/futility.py
index 04c9aef..0d3980d 100644
--- a/tools/binman/btool/futility.py
+++ b/tools/binman/btool/futility.py
@@ -170,7 +170,7 @@ class Bintoolfutility(bintool.Bintool):
# .gitcookies file. So use a mirror instead.
result = self.build_from_git(
'https://github.com/sjg20/vboot_reference.git',
- 'all',
+ ['all'],
'build/futility/futility',
flags=['USE_FLASHROM=0'])
return result