summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-09-01 05:14:00 -0600
committerSimon Glass <sjg@chromium.org>2020-09-22 12:50:43 -0600
commitbd4d0dcb2750a0ac17c1fe6e6bb3e8baa0779861 (patch)
tree21bc9acbd29064f55100feda71f68257ca222fb3 /Makefile
parent6cf9953bfb9d849b4f617e54570a6fe0e5b824a9 (diff)
Makefile: Support missing external blobs always
At present binman warns about missing external blobs only when the BUILD_ROM is defined. Enable this behaviour always, since many boards are starting to use these (e.g. ARM Trusted Firmware's BL31). Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index dd98b43031..5ddb64f92b 100644
--- a/Makefile
+++ b/Makefile
@@ -1334,8 +1334,7 @@ quiet_cmd_binman = BINMAN $@
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 . \
- $(if $(BUILD_ROM),,-m --allow-missing) \
+ build -u -d u-boot.dtb -O . -m --allow-missing \
-I . -I $(srctree) -I $(srctree)/board/$(BOARDDIR) \
$(BINMAN_$(@F))