Searched refs:runners (Results 1 – 25 of 94) sorted by relevance
1234
/Zephyr-latest/doc/build/flashing/ |
D | configuration.rst | 6 Zephyr supports setting up configuration for flash runners (invoked from 26 Configuration is applied in the yml file by using a ``runners`` map with a single ``run_once`` 29 are grouped by flash runner, and by qualifiers/boards). Commands have associated runners that 30 they apply to using a ``runners`` list value, this can contain ``all`` if it applies to all 31 runners, otherwise must contain each runner that it applies to using the runner-specific name. 48 runners: 52 runners: 61 runners: 71 # flash runners 73 runners: [all …]
|
/Zephyr-latest/scripts/west_commands/tests/ |
D | test_imports.py | 5 from runners.core import ZephyrBinaryRunner
|
D | conftest.py | 9 from runners.core import RunnerConfig, FileType
|
D | test_xsdb.py | 8 from runners.xsdb import XSDBBinaryRunner
|
D | test_dediprog.py | 12 from runners.dediprog import DediProgBinaryRunner
|
D | test_gd32isp.py | 11 from runners.gd32isp import Gd32ispBinaryRunner
|
/Zephyr-latest/cmake/flash/ |
D | CMakeLists.txt | 84 set(runners ${ARGV}) variable 86 set(runners_yaml "${PROJECT_BINARY_DIR}/runners.yaml") 88 runners_yaml_append("# Available runners configured by board.cmake.\nrunners:") 89 foreach(runner ${runners}) 116 foreach(runner ${runners}) 121 # Usually, the runner has arguments. Append them to runners.yaml, 141 # Available runners and their arguments are configured in board.cmake
|
D | check_runner_dependencies.cmake | 3 # The purpose of this script is to ensure that no runners targets contains
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | qemu.py | 7 from runners.core import RunnerCaps, ZephyrBinaryRunner
|
D | __init__.py | 8 from runners.core import MissingProgram, ZephyrBinaryRunner
|
D | xtensa.py | 9 from runners.core import RunnerCaps, ZephyrBinaryRunner
|
D | ecpprog.py | 8 from runners.core import BuildConfiguration, RunnerCaps, ZephyrBinaryRunner
|
D | hifive1.py | 9 from runners.core import RunnerCaps, ZephyrBinaryRunner
|
D | misc.py | 15 from runners.core import RunnerCaps, ZephyrBinaryRunner
|
D | nrfutil.py | 13 from runners.core import _DRY_RUN 14 from runners.nrf_common import NrfBinaryRunner
|
D | renode.py | 9 from runners.core import RunnerCaps, ZephyrBinaryRunner
|
D | teensy.py | 10 from runners.core import ZephyrBinaryRunner
|
D | renode-robot.py | 9 from runners.core import RunnerCaps, ZephyrBinaryRunner
|
D | dediprog.py | 11 from runners.core import RunnerCaps, ZephyrBinaryRunner
|
D | gd32isp.py | 6 from runners.core import RunnerCaps, ZephyrBinaryRunner
|
D | native.py | 9 from runners.core import RunnerCaps, RunnerConfig, ZephyrBinaryRunner
|
D | probe_rs.py | 6 from runners.core import RunnerCaps, ZephyrBinaryRunner
|
D | xsdb.py | 11 from runners.core import RunnerCaps, RunnerConfig, ZephyrBinaryRunner
|
/Zephyr-latest/doc/develop/west/ |
D | build-flash-debug.rst | 414 - ``runners``: Try to guess the folder when using any of the 'runner' 486 library used by West. The list of runners which support flashing can 489 available runners for your board. 506 supported by all runners. 512 example, some runners support an ``--erase`` flag, which mass-erases 515 To view all of the available options for the runners your board 527 prints a list of runners. You can use ``west flash -H -r 600 library used by West. The list of runners which support debugging can 603 available runners for your board. 621 supported by all runners. [all …]
|
/Zephyr-latest/scripts/west_commands/ |
D | run_common.py | 27 from runners.core import FileType 28 from runners.core import BuildConfiguration 37 from runners import get_runner_cls, ZephyrBinaryRunner, MissingProgram 38 from runners.core import RunnerConfig 94 runners: list 359 … if cmd.command == runner_args[i] and (runner_name in cmd.runners or 'all' in cmd.runners): 406 … if cmd.command == '--reset' and (runner_name in cmd.runners or 'all' in cmd.runners):
|
1234