Skip to content

Commit ec876f7

Browse files
Add west.yml
Adding west.yml resolves the first issue when building with west. `west build -p always -b nrf52840dk_nrf52840 mcuboot/samples/zephyr_external_config` now fails with: error: MCUBOOT (defined at Kconfig.zephyr:682) is assigned in a configuration file, but is not directly user-configurable (has no prompt). It gets its value indirectly from other symbols. See http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_MCUBOOT and/or look up MCUBOOT in the menuconfig/guiconfig interface. The Application Development Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be helpful too. CMake Error at /home/zephyr/mcuboot_dev/zephyr/cmake/modules/kconfig.cmake:326 (message): command failed with return code: 1 Call Stack (most recent call first): /home/zephyr/mcuboot_dev/zephyr/cmake/modules/zephyr_default.cmake:108 (include) /home/zephyr/mcuboot_dev/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include) /home/zephyr/mcuboot_dev/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate) CMakeLists.txt:6 (find_package) Signed-off-by: Gregory SHUE <[email protected]>
1 parent 5765a1e commit ec876f7

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

west.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Copyright (c) 2022 Legrand North America, LLC.
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
# The west manifest file for Zephyr ecosystem development.
6+
#
7+
# Usage:
8+
# west init -m https://github.com/mcu-tools/mcuboot
9+
# west update
10+
11+
manifest:
12+
version: "0.12"
13+
14+
remotes:
15+
- name: zephyrproject
16+
url-base: https://github.com/zephyrproject-rtos
17+
- name: mcu-tools
18+
url-base: https://github.com/mcu-tools
19+
20+
defaults:
21+
remote: mcu-tools
22+
23+
projects:
24+
- name: zephyr
25+
revision: main
26+
remote: zephyrproject
27+
import:
28+
name-blocklist:
29+
- mcuboot
30+
31+
self:
32+
path: mcuboot

0 commit comments

Comments
 (0)