zephyr/scripts/west_commands
Marti Bolivar ab82264ace scripts: add west build, flash, and debug commands
West now supports a mechanism for extension commands. Use it to move
the command implementations that are tightly coupled with boards and
the zephyr build system back into the Zephyr repository.

This patch doesn't include test cases. Those will be moved over in a
subsequent patch.

Signed-off-by: Marti Bolivar <marti@foundries.io>
2019-01-29 10:15:01 +01:00
..
runners scripts: add west build, flash, and debug commands 2019-01-29 10:15:01 +01:00
build.py scripts: add west build, flash, and debug commands 2019-01-29 10:15:01 +01:00
debug.py scripts: add west build, flash, and debug commands 2019-01-29 10:15:01 +01:00
flash.py scripts: add west build, flash, and debug commands 2019-01-29 10:15:01 +01:00
README.txt scripts: add west build, flash, and debug commands 2019-01-29 10:15:01 +01:00
run_common.py scripts: add west build, flash, and debug commands 2019-01-29 10:15:01 +01:00

This directory contains implementations for west commands which are
tightly coupled to the zephyr tree. Currently, those are 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 just those files that change along with Zephyr
itself.

Thanks!