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.
 
 
 
 
 
 
Grzegorz Swiderski 8fc161f820 west: runners: nrf: Check for missing UICR 8 months ago
..
completion scripts: west: commands: completion: add twister --log-level completion 10 months ago
fetchers
runners west: runners: nrf: Check for missing UICR 8 months ago
sdk commands: add the 'sdk' command to manage SDK. 11 months ago
tests scripts: west_commands: tests: add pytest for xsdb runner 9 months ago
zspdx scripts: zephyr_module: Move SPDX name normalization to writer.py 1 year ago
README.txt
bindesc.py west: bindesc: Added get_offset command 9 months ago
blobs.py west: blobs: verify fetched blobs after downloading 11 months ago
boards.py scripts: Undo Board.{dir -> directories[0]} renames 9 months ago
build.py west build: fix a leftover "log" reference in build.py 8 months ago
build_helpers.py scripts: domains: Support initialization only from YAML 2 years ago
completion.py
debug.py west: runners: Add `west rtt` command with pyocd implementation 10 months ago
export.py
flash.py scripts: west: flash: Fix issue with loading outdated domain file 1 year ago
mypy.ini
robot.py West: Add `west robot` command 1 year ago
run_common.py scripts: west_commands: run: Add priority to run once config 9 months ago
run_tests.py
sdk.py commands: add the 'sdk' command to manage SDK. 11 months ago
shields.py scripts: west: commands: shields: add cmd for listing supported shields 1 year ago
sign.py scripts: west_commands: sign: Remove deprecated west.log 9 months ago
simulate.py West: Add `west simulate` command 1 year ago
spdx.py scripts: Fix CMake spelling 8 months ago
twister_cmd.py scripts: twister: Python Version Guard 8 months ago
zcmake.py
zephyr_ext_common.py west: promote config_get*() functions from sign.py to the base class 9 months 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!