Skip to content

Commit eb5d64b

Browse files
Add Zephyr manifest file (west.yml)
Extend this repository to be a Zephyr application manifest-module to better support development as a downstream Zephyr module when using `west`. Verified by using `west init -m $repo --mr $branch $workspace` to initialize a west workspace, followed by a west update and a successful build of `$mcuboot/boot/zephyr` for mimxrt1064_evk. Further verified that the following testcases still pass with mcuboot options on twister: mcuboot/boot/zephyr zephyr/tests/subsys/dfu zephyr/samples/subsys/mgmt/mcumgr/smp_svr Signed-off-by: Gregory SHUE <[email protected]>
1 parent 2221143 commit eb5d64b

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

west.yml

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

0 commit comments

Comments
 (0)