Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
completion/ | 04-Jan-2025 | - | 2,173 | 1,720 | ||
fetchers/ | 04-Jan-2025 | - | 91 | 53 | ||
runners/ | 04-Jan-2025 | - | 7,524 | 5,677 | ||
sdk/ | 04-Jan-2025 | - | 10 | 6 | ||
tests/ | 04-Jan-2025 | - | 3,514 | 2,812 | ||
zspdx/ | 04-Jan-2025 | - | 3,095 | 2,073 | ||
README.txt | D | 04-Jan-2025 | 825 | 26 | 17 | |
bindesc.py | D | 04-Jan-2025 | 13.2 KiB | 334 | 261 | |
blobs.py | D | 04-Jan-2025 | 6 KiB | 172 | 126 | |
boards.py | D | 04-Jan-2025 | 3.8 KiB | 112 | 85 | |
build.py | D | 04-Jan-2025 | 31 KiB | 721 | 563 | |
build_helpers.py | D | 04-Jan-2025 | 5.5 KiB | 165 | 124 | |
completion.py | D | 04-Jan-2025 | 2.3 KiB | 81 | 56 | |
debug.py | D | 04-Jan-2025 | 3 KiB | 95 | 60 | |
export.py | D | 04-Jan-2025 | 1.9 KiB | 59 | 34 | |
flash.py | D | 04-Jan-2025 | 1 KiB | 34 | 18 | |
mypy.ini | D | 04-Jan-2025 | 35 | 3 | 2 | |
packages.py | D | 04-Jan-2025 | 5.5 KiB | 165 | 126 | |
patch.py | D | 04-Jan-2025 | 11.1 KiB | 355 | 289 | |
robot.py | D | 04-Jan-2025 | 822 | 30 | 17 | |
run_common.py | D | 04-Jan-2025 | 30.9 KiB | 821 | 567 | |
run_tests.py | D | 04-Jan-2025 | 1.3 KiB | 41 | 16 | |
sdk.py | D | 04-Jan-2025 | 20 KiB | 575 | 457 | |
shields.py | D | 04-Jan-2025 | 2.7 KiB | 86 | 59 | |
sign.py | D | 04-Jan-2025 | 25 KiB | 621 | 434 | |
simulate.py | D | 04-Jan-2025 | 825 | 30 | 17 | |
spdx.py | D | 04-Jan-2025 | 4.2 KiB | 114 | 81 | |
twister_cmd.py | D | 04-Jan-2025 | 2 KiB | 67 | 46 | |
zcmake.py | D | 04-Jan-2025 | 10.4 KiB | 304 | 218 | |
zephyr_ext_common.py | D | 04-Jan-2025 | 2.2 KiB | 61 | 41 |
README.txt
1This directory contains implementations for west commands which are 2tightly coupled to the zephyr tree. This includes the build, flash, 3and debug commands. 4 5Before adding more here, consider whether you might want to put new 6extensions in upstream west. For example, any commands which operate 7on the multi-repo need to be in upstream west, not here. Try to limit 8what goes in here to Zephyr-specific features. 9 10When extending this code, please keep the unit tests (in tests/) up to 11date. The mypy static type checker is also run on the runners package. 12 13To run these tests locally on Windows, run: 14 15 py -3 run_tests.py 16 17On macOS and Linux: 18 19 ./run_tests.py 20 21Note that these tests are run as part of Zephyr's CI when submitting 22an upstream pull request, and pull requests which break the tests 23cannot be merged. 24 25Thanks! 26