| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| completion/ | 18-Mar-2025 | - | 2,173 | 1,720 | ||
| fetchers/ | 18-Mar-2025 | - | 91 | 53 | ||
| runners/ | 18-Mar-2025 | - | 7,688 | 5,818 | ||
| sdk/ | 18-Mar-2025 | - | 10 | 6 | ||
| tests/ | 18-Mar-2025 | - | 3,454 | 2,772 | ||
| zspdx/ | 18-Mar-2025 | - | 3,095 | 2,073 | ||
| README.txt | D | 18-Mar-2025 | 825 | 26 | 17 | |
| bindesc.py | D | 18-Mar-2025 | 13.2 KiB | 334 | 261 | |
| blobs.py | D | 18-Mar-2025 | 6.3 KiB | 180 | 133 | |
| boards.py | D | 18-Mar-2025 | 4.5 KiB | 130 | 99 | |
| build.py | D | 18-Mar-2025 | 31 KiB | 721 | 563 | |
| build_helpers.py | D | 18-Mar-2025 | 5.5 KiB | 165 | 124 | |
| completion.py | D | 18-Mar-2025 | 2.3 KiB | 81 | 56 | |
| debug.py | D | 18-Mar-2025 | 3 KiB | 95 | 60 | |
| export.py | D | 18-Mar-2025 | 1.9 KiB | 59 | 34 | |
| flash.py | D | 18-Mar-2025 | 1 KiB | 34 | 18 | |
| gtags.py | D | 18-Mar-2025 | 3.4 KiB | 99 | 69 | |
| mypy.ini | D | 18-Mar-2025 | 35 | 3 | 2 | |
| packages.py | D | 18-Mar-2025 | 5.8 KiB | 173 | 133 | |
| patch.py | D | 18-Mar-2025 | 18.6 KiB | 557 | 462 | |
| robot.py | D | 18-Mar-2025 | 822 | 30 | 17 | |
| run_common.py | D | 18-Mar-2025 | 31.5 KiB | 838 | 581 | |
| run_tests.py | D | 18-Mar-2025 | 1.3 KiB | 41 | 16 | |
| sdk.py | D | 18-Mar-2025 | 21.1 KiB | 608 | 482 | |
| shields.py | D | 18-Mar-2025 | 2.7 KiB | 86 | 59 | |
| sign.py | D | 18-Mar-2025 | 25.7 KiB | 636 | 445 | |
| simulate.py | D | 18-Mar-2025 | 825 | 30 | 17 | |
| spdx.py | D | 18-Mar-2025 | 4.3 KiB | 116 | 83 | |
| twister_cmd.py | D | 18-Mar-2025 | 2 KiB | 67 | 46 | |
| zcmake.py | D | 18-Mar-2025 | 11.2 KiB | 327 | 236 | |
| zephyr_ext_common.py | D | 18-Mar-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