Skip to content

Commit 82beafc

Browse files
boot: zephyr: 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 b25ba4b commit 82beafc

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)