51f8588fb8
Import any manifest files in a new 'submanifests' directory into west.yml. This lets users define custom zephyr modules or easily override built-in modules by dropping their own manifest files into submanifests/some-user-file.yaml. Provide an example and a README with links to the relevant documentation in 'submanifests' to get users started. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
19 lines
580 B
Plaintext
19 lines
580 B
Plaintext
# Example manifest file you can include into the main west.yml file.
|
|
#
|
|
# To make this work, copy this file's contents to a new file,
|
|
# 'example.yaml', in the same directory.
|
|
#
|
|
# Then change the 'name' and 'url' below and run 'west update'.
|
|
#
|
|
# Your module will be added to the local workspace and kept in sync
|
|
# every time you run 'west update'.
|
|
#
|
|
# If you want to fetch a particular commit rather than the main
|
|
# branch, change the 'revision' line accordingly.
|
|
|
|
manifest:
|
|
projects:
|
|
- name: my-module
|
|
url: https://github.com/my-username/my-module
|
|
revision: main
|