zephyr/scripts/west-commands.yml
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

18 lines
399 B
YAML

west-commands:
- file: scripts/west_commands/build.py
commands:
- name: build
class: Build
- file: scripts/west_commands/flash.py
commands:
- name: flash
class: Flash
- file: scripts/west_commands/debug.py
commands:
- name: debug
class: Debug
- name: debugserver
class: DebugServer
- name: attach
class: Attach