aboutsummaryrefslogtreecommitdiff
path: root/tools/binman/README
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-07-08 13:18:28 -0600
committerSimon Glass <sjg@chromium.org>2019-07-23 20:27:57 -0700
commitc7d8035ec185c789f8182c7d3374db4dcdbd250b (patch)
tree80e381e107190f74581533a8519c579f67f047b1 /tools/binman/README
parentc22b8cfc1dc6a8fd9e45dd56b2945ccf979aa2c8 (diff)
downloadu-boot-c7d8035ec185c789f8182c7d3374db4dcdbd250b.zip
u-boot-c7d8035ec185c789f8182c7d3374db4dcdbd250b.tar.gz
u-boot-c7d8035ec185c789f8182c7d3374db4dcdbd250b.tar.bz2
binman: Add a --toolpath option to set the tool search path
Sometimes tools used by binman may not be in the normal PATH search path, such as when the tool is built by the U-Boot build itself (e.g. mkimage). Provide a way to specify an additional search path for tools. The flag can be used multiple times. Update the help to describe this option. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/README')
-rw-r--r--tools/binman/README10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/binman/README b/tools/binman/README
index decca47..28624fa 100644
--- a/tools/binman/README
+++ b/tools/binman/README
@@ -691,6 +691,16 @@ Not all properties can be provided this way. Only some entries support it,
typically for filenames.
+External tools
+--------------
+
+Binman can make use of external command-line tools to handle processing of
+entry contents or to generate entry contents. These tools are executed using
+the 'tools' module's Run() method. The tools generally must exist on the PATH,
+but the --toolpath option can be used to specify additional search paths to
+use. This option can be specified multiple times to add more than one path.
+
+
Code coverage
-------------