zephyr/scripts/west_commands
Gregers Gram Rygg 4680180944 scripts: add board revision help text for west build
west build supports specifying the board revision using @revision, but
it's not mentioned in the help text. This commit updates the help text
to describe how to specify the board revision.

Signed-off-by: Gregers Gram Rygg <gregers.gram.rygg@nordicsemi.no>
2022-02-24 13:44:01 -08:00
..
completion
runners debug: Remove deprecated CONFIG_OPENOCD_SUPPORT 2022-01-24 10:23:20 -05:00
tests scripts: runners: Add west flash command for B91 platform 2021-12-06 07:28:38 -05:00
zspdx west: spdx: Fix missing field in build results 2022-01-26 18:15:33 +01:00
README.txt
boards.py
build.py scripts: add board revision help text for west build 2022-02-24 13:44:01 -08:00
build_helpers.py
completion.py
debug.py
export.py
flash.py
mypy.ini
run_common.py scripts: runners: openocd: Enable thread awareness 2021-08-27 06:44:45 -04:00
run_tests.py
sign.py sign.py: stop ignoring the -- -c foo.toml option passed to rimage 2022-02-22 11:55:09 -08:00
spdx.py
zcmake.py
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!