Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[µTVM] Zephyr: Fix missing board-specific config file in build dir (a…
…pache#8230) Currently board-specific config files (boards/*.conf) are not copied from Zephyr project dir to the destination build dir, so as a consequence the per board configs are not used when building the runtime libraries, like libcommon. Hence, for instance, it's currently not possible to set CONFIG_FPU per board since it only takes effect when it's set in the generic 'prj.con' config file. This commit fixes it by copying to the build dir (to each lib dir) the proper .conf for the selected target board. For example, if target 'qemu_x86' is selected 'qemu_x86.conf' is copied to the boards/ dir inside the lib dirs, so Zephyr build system can find it and combine it with configs found in the generic 'prj.conf'. Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
- Loading branch information