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.
 
 
 
 
 
 
TOKITA Hiroshi b68071dc71 commands: add the 'sdk' command to manage SDK. 11 months ago
..
completion west: Update fish completion for `boards` 11 months ago
fetchers modules: Basic binary blob infrastructure 3 years ago
runners runners: jlink: Add support for .elf files to the jlink flash command 11 months ago
sdk commands: add the 'sdk' command to manage SDK. 11 months ago
tests scripts: west_commands: runners: Add support for probe-rs 11 months ago
zspdx scripts: zephyr_module: Move SPDX name normalization to writer.py 1 year ago
README.txt
bindesc.py west_commands: bindesc: Fixed crash when no sub-command is given 2 years ago
blobs.py west: blobs: verify fetched blobs after downloading 11 months ago
boards.py west: add vendor to boards format 11 months ago
build.py scripts: west_commands: build: Fix empty testcase 11 months 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 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 west : runners : Fix error message when runners.yaml is not found. 1 year 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 build: namespace `autoconf.h` with `zephyr/` 1 year ago
simulate.py West: Add `west simulate` command 1 year ago
spdx.py doc: add docs for west spdx 4 years ago
twister_cmd.py west: twister: Fix default options setup 1 year ago
zcmake.py west: zcmake.py: support UNINITIALIZED type if CMakeCache.txt file 3 years ago
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!