diff options
author | Simon Glass | 2019-07-08 13:18:28 -0600 |
---|---|---|
committer | Simon Glass | 2019-07-23 20:27:57 -0700 |
commit | c7d8035ec185c789f8182c7d3374db4dcdbd250b (patch) | |
tree | 80e381e107190f74581533a8519c579f67f047b1 /tools/binman/README | |
parent | c22b8cfc1dc6a8fd9e45dd56b2945ccf979aa2c8 (diff) |
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/README | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/binman/README b/tools/binman/README index decca47bbf3..28624fadb33 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 ------------- |