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.
 
 
 
 
 
 
Martí Bolívar 877fc59e30 scripts: west build: handle missing CMAKE_PROJECT_NAME 5 years ago
..
completion cmake: West extension command for Zephyr config package registration 5 years ago
runners boards: nrf52_pca10040: Rename to nrf52dk_nrf52832 5 years ago
tests board: arc: Switch to generic OpenOCD runner 5 years ago
README.txt west: require v0.6.0 or higher 6 years ago
boards.py scripts: west-commands: Updates needed when removing ZEPHYR_BASE env 5 years ago
build.py scripts: west build: handle missing CMAKE_PROJECT_NAME 5 years ago
build_helpers.py scripts: west_commands: fix argument handling with runners.yaml 5 years ago
completion.py west: completion.py: Fix bad indentation and blank lines at end of file 6 years ago
debug.py scripts: west_commands: fix argument handling with runners.yaml 5 years ago
export.py cmake: Relocating Zephyr Unittest CMake package. 5 years ago
flash.py scripts: west_commands: fix argument handling with runners.yaml 5 years ago
run_common.py scripts: run_common: don't dump stack on unavailable runner 5 years ago
sign.py scripts: west-commands: Updates needed when removing ZEPHYR_BASE env 5 years ago
zcmake.py scripts: west_commands: verify minimum cmake version 6 years ago
zephyr_ext_common.py scripts: west-commands: Updates needed when removing ZEPHYR_BASE env 5 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=$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\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!