mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-06 03:55:53 +00:00
Fixes: #27934 This commit introduces additional naming support of config files. It is now possible to create a config file of the form `prj_<build>.conf` and automatically have a corresponding `boards/<BOARD>_<build>.conf` config file merged. As example, one can create a structure as: |-- prj.conf |-- prj_debug.conf |-- boards |-- nrf52840dk_nrf52840.conf |-- nrf52840dk_nrf52840_debug.conf when building: (existing behavior) cmake -DBOARD=nrf52840dk_nrf52840 ... prj.conf is merged with nrf52840dk_nrf52840.conf when building: (new behavior) cmake -DBOARD=nrf52840dk_nrf52840 -DCONF_FILE=prj_debug.conf ... prj_debug.conf is merged with nrf52840dk_nrf52840_debug.conf Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no> |
||
---|---|---|
.. | ||
bluetooth | ||
build | ||
coding_guidelines | ||
crypto | ||
debugging | ||
device_mgmt | ||
documentation | ||
dts | ||
kconfig | ||
networking | ||
optimizations | ||
platformio | ||
portability | ||
porting | ||
test | ||
tools | ||
tracing | ||
west | ||
beyond-GSG.rst | ||
c_library.rst | ||
coccinelle.rst | ||
code-relocation.rst | ||
coverage.rst | ||
design_guidelines.rst | ||
env_vars.rst | ||
getting-help.rst | ||
index.rst | ||
modules.rst | ||
zephyr_cmake_package.rst |