Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Jamie McCrae b2af1e1737 scripts: west: list_boards: Fix hwmv2 output 1 year ago
..
completion scripts: west_commands: completion: Add hwmv2 complete to bash 1 year ago
fetchers
runners scripts: west: runners: intel_adsp: Adjust path to HWMv2 1 year ago
tests west: runners: blackmagicprobe: elf_file fallback 1 year ago
zspdx scripts: zspdx: Include modules as packages in zephyr.spdx 2 years ago
README.txt
bindesc.py west_commands: bindesc: Fixed crash when no sub-command is given 2 years ago
blobs.py
boards.py scripts: west: list_boards: Fix hwmv2 output 1 year ago
build.py twister: handle quotes for configuration options 2 years ago
build_helpers.py scripts: domains: Support initialization only from YAML 2 years ago
completion.py west: Add fish shell completion 2 years ago
debug.py
export.py
flash.py sysbuild: Do not exclude images from domains.yaml 2 years ago
mypy.ini
run_common.py west runner: Add exe file to configuration 2 years ago
run_tests.py
sign.py west: sign.py: add "REM" support to pass comments through cpp 2 years ago
spdx.py
twister_cmd.py scripts: twister: west twister error codes match twister direct call 2 years ago
zcmake.py
zephyr_ext_common.py

README.txt

This directory contains implementations for west commands which are
tightly coupled to the zephyr tree. This includes the build, flash,
and debug commands.

Before adding more here, consider whether you might want to put new
extensions in upstream west. For example, any commands which operate
on the multi-repo need to be in upstream west, not here. Try to limit
what goes in here to Zephyr-specific features.

When extending this code, please keep the unit tests (in tests/) up to
date. The mypy static type checker is also run on the runners package.

To run these tests locally on Windows, run:

py -3 run_tests.py

On macOS and Linux:

./run_tests.py

Note that these tests are run as part of Zephyr's CI when submitting
an upstream pull request, and pull requests which break the tests
cannot be merged.

Thanks!