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.
 
 
 
 
 
 
Guennadi Liakhovetski 6d0c23be31 soc: intel_adsp: add support for .cold* sections 6 months ago
..
completion scripts: west: commands: completion: add twister --log-level completion 10 months ago
fetchers modules: Basic binary blob infrastructure 3 years ago
runners west: runners: bossac: Honor --erase flag 7 months ago
sdk commands: add the 'sdk' command to manage SDK. 11 months ago
tests west: runners: bossac: Honor --erase flag 7 months ago
zspdx python: Format trivial files where only newlines were missing 8 months ago
README.txt
bindesc.py scripts: west_commands: bindesc: Remove deprecated west.log 8 months ago
blobs.py scripts: west_commands: blobs: Remove deprecated west.log 8 months ago
boards.py python: Format and sort imports 8 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 scripts: west_commands: completion: Remove deprecated west.log 8 months ago
debug.py cmake: flash: update cmake to support rtt target 8 months ago
export.py scripts: west_commands: export: Remove deprecated west.log 8 months ago
flash.py scripts: west: flash: Fix issue with loading outdated domain file 1 year ago
mypy.ini
packages.py scripts: west_commands: Add packages command 8 months ago
patch.py scripts: west_commands: add the west patch command 7 months ago
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 python: Format and sort imports 8 months ago
sign.py soc: intel_adsp: add support for .cold* sections 6 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: west_commands: twister_cmd: Remove deprecated west.log 8 months ago
zcmake.py west: zcmake.py: support UNINITIALIZED type if CMakeCache.txt file 3 years ago
zephyr_ext_common.py scripts: west_commands: zephyr_ext_common: Remove deprecated west.log 8 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!