zephyr/scripts/west_commands
Mikkel Jakobsen 3fe785d4a7 scripts: west sign: fix devicetree module include
PR #33746 introduced changes to the devicetree python file
that requires changes in the python code that imports the
devicetree module.

This was omitted in the west sign command implementation.

Signed-off-by: Mikkel Jakobsen <mikkel.aunsbjerg@prevas.dk>
2021-04-06 14:54:02 -05:00
..
completion
runners dts: separate DT libraries from gen_defines.py 2021-04-02 08:28:12 -05:00
tests runners: nrfjprog: workaround for multi-core hex files 2021-03-19 09:52:13 -04:00
README.txt
boards.py
build.py west build: fix board detection 2021-02-02 14:08:57 -05:00
build_helpers.py
completion.py
debug.py
export.py
flash.py
mypy.ini
run_common.py dts: separate DT libraries from gen_defines.py 2021-04-02 08:28:12 -05:00
run_tests.py
sign.py scripts: west sign: fix devicetree module include 2021-04-06 14:54:02 -05:00
zcmake.py scripts: zcmake: fix for prerelease cmake versions 2021-02-09 09:14:37 -05:00
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!