diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-05 21:03:36 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-18 20:50:40 -0500 |
commit | 93685d0dcb9488013f5d2177f7659cc8852b6da6 (patch) | |
tree | e703254fb5c1d5e670f3bc804714b43ff1e01695 /Makefile | |
parent | 255cebbfa330ec82cd2632f7ede3501d60bf1aa7 (diff) | |
download | u-boot-93685d0dcb9488013f5d2177f7659cc8852b6da6.zip u-boot-93685d0dcb9488013f5d2177f7659cc8852b6da6.tar.gz u-boot-93685d0dcb9488013f5d2177f7659cc8852b6da6.tar.bz2 |
Makefile: With BINMAN_ALLOW_MISSING=1 don't error on missing
When the user builds with BINMAN_ALLOW_MISSING=1 they're explicitly
setting the flag to allow for additional binaries to be missing and so
have acknowledged the output might not work. In this case we want to
default to not passing a non-zero exit code.
Cc: Simon Glass <sjg@chromium.org>
Reported-by: Peter Robinson <pbrobinson@gmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1334,7 +1334,7 @@ cmd_binman = $(srctree)/tools/binman/binman $(if $(BINMAN_DEBUG),-D) \ --toolpath $(objtree)/tools \ $(if $(BINMAN_VERBOSE),-v$(BINMAN_VERBOSE)) \ build -u -d u-boot.dtb -O . -m \ - $(if $(BINMAN_ALLOW_MISSING),--allow-missing --fake-ext-blobs) \ + $(if $(BINMAN_ALLOW_MISSING),--allow-missing --ignore-missing) \ -I . -I $(srctree) -I $(srctree)/board/$(BOARDDIR) \ -I arch/$(ARCH)/dts -a of-list=$(CONFIG_OF_LIST) \ $(foreach f,$(BINMAN_INDIRS),-I $(f)) \ |