zephyr/scripts/west_commands
Iuliana Prodan 3ec07c5f47 west: sign: add support for NXP i.MX8QXP board
Add support for signing i.MX8QXP SOF with Zephyr images with rimage.

i.MX8QXP and i.MX8QM have the same board-level definitions,
so we use the generic imx8.

Signed-off-by: Iuliana Prodan <iuliana.prodan@nxp.com>
2021-09-27 21:52:31 -04:00
..
completion
runners scripts: runners: openocd: Fix empty search path 2021-09-09 19:44:22 -04:00
tests scripts: runners: openocd: Enable thread awareness 2021-08-27 06:44:45 -04:00
zspdx
README.txt
boards.py scripts: west: boards: support listing out-of-tree boards 2021-07-16 07:17:35 -04:00
build.py
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 west: sign: add support for NXP i.MX8QXP board 2021-09-27 21:52:31 -04: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!