Skip to content
Snippets Groups Projects
Commit 40e72e4a authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

zephyr: Make sure that correct Zephyr config is used for "minimal" build.

Overriding CONF_FILE in "minimal" target itself is too late due to include-
pinned $(Z_EXPORTS) target.
parent 0390bc97
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,12 @@ ...@@ -7,7 +7,12 @@
# #
BOARD ?= qemu_x86 BOARD ?= qemu_x86
ifeq ($(MAKECMDGOALS), minimal)
# For minimal, CONF_FILE must be overriden early due to $(Z_EXPORTS) target
CONF_FILE = prj_minimal.conf
else
CONF_FILE = prj.conf CONF_FILE = prj.conf
endif
# Zephyr 1.5.0 # Zephyr 1.5.0
#OUTDIR_PREFIX = #OUTDIR_PREFIX =
# Zephyr 1.6.0 # Zephyr 1.6.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment