diff options
author | Simon Glass | 2020-07-09 18:39:38 -0600 |
---|---|---|
committer | Simon Glass | 2020-07-25 14:46:57 -0600 |
commit | 4f9f1056ecf2d9e54803b89fd0784240a8d89fd8 (patch) | |
tree | 11f385fc3a6d6d0938a3f690693500ec21afc020 /tools/binman/cmdline.py | |
parent | 04e6a6b9ecdc75023edeebe73286f311c40b346b (diff) |
binman: Allow external binaries to be missing
Sometimes it is useful to build an image even though external binaries are
not present. This allows the build system to continue to function without
these files, albeit not producing valid images.
U-Boot does with with ATF (ARM Trusted Firmware) today.
Add a new flag to binman to request this behaviour.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'tools/binman/cmdline.py')
-rw-r--r-- | tools/binman/cmdline.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/binman/cmdline.py b/tools/binman/cmdline.py index 1e385935797..bb4d9d1288b 100644 --- a/tools/binman/cmdline.py +++ b/tools/binman/cmdline.py @@ -53,6 +53,8 @@ controlled by a description in the board device tree.''' help='Add a path to the list of directories to use for input files') build_parser.add_argument('-m', '--map', action='store_true', default=False, help='Output a map file for each image') + build_parser.add_argument('-M', '--allow-missing', action='store_true', + default=False, help='Allow external blobs to be missing') build_parser.add_argument('-O', '--outdir', type=str, action='store', help='Path to directory to use for intermediate and ' 'output files') |