Skip to content

Commit c83f683

Browse files
Add west.yml to make manifest-module.
Extending mcuboot to be a Zephyr manifest-module enables mcuboot integration consistent with Zephyr's example-application. Signed-off-by: Gregory Shue <[email protected]>
1 parent e82b370 commit c83f683

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 --mr main $new_workspace
9+
# cd $new && 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)