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.
 
 
 
 
 
 
Fabio Baltieri d0377d30e3 scripts: runners: add connect_srst support for blackmagicprobe 4 years ago
..
completion boards/shields: re-work handling in cmake and west 5 years ago
runners scripts: runners: add connect_srst support for blackmagicprobe 4 years ago
tests scripts: runners: add connect_srst support for blackmagicprobe 4 years ago
zspdx west: spdx: Fix --init for Windows builds 4 years ago
README.txt scripts: runners: add type checking for west_commands 5 years ago
boards.py scripts: west: boards: support listing out-of-tree boards 4 years ago
build.py west: build.py: resolve symlinks in cached source directory check 4 years ago
build_helpers.py west build: fix --pristine on early build system failure 5 years ago
completion.py boards/shields: re-work handling in cmake and west 5 years ago
debug.py scripts: clean up west build/flash/debug help 5 years ago
export.py cmake: Zephyr CMake package clean-up and minor fix 5 years ago
flash.py scripts: clean up west build/flash/debug help 5 years ago
mypy.ini scripts: runners: add type checking for west_commands 5 years ago
run_common.py scripts: runners: openocd: Enable thread awareness 4 years ago
run_tests.py scripts: runners: add type checking for west_commands 5 years ago
sign.py boards: xtensa: Use a CMake variable to set the rimage target name 4 years ago
spdx.py doc: add docs for west spdx 4 years ago
zcmake.py scripts: zcmake: fix for prerelease cmake versions 4 years ago
zephyr_ext_common.py scripts: west_commands: Remove no longer needed load_dot_config(path) 4 years ago

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!