• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..22-Aug-2025-

completion/22-Aug-2025-

fetchers/22-Aug-2025-

runners/22-Aug-2025-

sdk/22-Aug-2025-

tests/22-Aug-2025-

zspdx/22-Aug-2025-

README.txt A D22-Aug-2025850 2617

bindesc.py A D22-Aug-202513.6 KiB335263

blobs.py A D22-Aug-20258 KiB213159

boards.py A D22-Aug-20254.6 KiB13099

build.py A D22-Aug-202531.8 KiB729569

build_helpers.py A D22-Aug-20255.7 KiB166124

completion.py A D22-Aug-20252.8 KiB9569

debug.py A D22-Aug-20253.1 KiB9460

export.py A D22-Aug-20251.9 KiB5834

flash.py A D22-Aug-20251 KiB3318

gtags.py A D22-Aug-20253.5 KiB9969

mypy.ini A D22-Aug-202537 32

packages.py A D22-Aug-20256 KiB173133

patch.py A D22-Aug-202519.4 KiB561464

robot.py A D22-Aug-2025840 3017

run_common.py A D22-Aug-202534.3 KiB888612

run_tests.py A D22-Aug-20251.3 KiB4116

sdk.py A D22-Aug-202522.1 KiB612486

shields.py A D22-Aug-20253.1 KiB9366

sign.py A D22-Aug-202529.3 KiB709505

simulate.py A D22-Aug-2025840 3017

spdx.py A D22-Aug-20254.9 KiB12593

twister_cmd.py A D22-Aug-20252 KiB6746

zcmake.py A D22-Aug-202511.5 KiB327236

zephyr_ext_common.py A D22-Aug-20252.3 KiB6141

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