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.
 
 
 
 
 
 
Ulf Magnusson ba312fe844 scripts: Remove unnecessary () around if/while conditions in Python 6 years ago
..
runners scripts: Remove unnecessary () around if/while conditions in Python 6 years ago
tests scripts: Remove extra trailing newlines from Python scripts 6 years ago
README.txt west_commands: add information on running tests 7 years ago
build.py west: commands: build: Specify source dir without a flag 6 years ago
debug.py scripts: west commands: add text for "west --help" 7 years ago
flash.py scripts: west commands: add text for "west --help" 7 years ago
run_common.py scripts: west_commands: refactor run_common.py 7 years ago
sign.py west: sign.py: usability fixes 6 years ago
zephyr_ext_common.py scripts: west_commands: refactor run_common.py 7 years ago

README.txt

This directory contains implementations for west commands which are
tightly coupled to the zephyr tree. Currently, those are 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 just those files that change along with Zephyr
itself.

When extending this code, please keep the unit tests (in tests/) up to
date. You can run the tests with this command from this directory:

$ PYTHONPATH=$(west list --format="{abspath}" west)/src:$PWD py.test

Windows users will need to find the path to .west/west/src in their
Zephyr installation, then run something like this:

> cmd /C "set PYTHONPATH=path\to\.west\west\src:path\to\zephyr\scripts\west_commands && py.test"

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!