Home
last modified time | relevance | path

Searched refs:runners (Results 1 – 25 of 94) sorted by relevance

1234

/Zephyr-latest/doc/build/flashing/
Dconfiguration.rst6 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/
Dtest_imports.py5 from runners.core import ZephyrBinaryRunner
Dconftest.py9 from runners.core import RunnerConfig, FileType
Dtest_xsdb.py8 from runners.xsdb import XSDBBinaryRunner
Dtest_dediprog.py12 from runners.dediprog import DediProgBinaryRunner
Dtest_gd32isp.py11 from runners.gd32isp import Gd32ispBinaryRunner
/Zephyr-latest/cmake/flash/
DCMakeLists.txt84 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
Dcheck_runner_dependencies.cmake3 # The purpose of this script is to ensure that no runners targets contains
/Zephyr-latest/scripts/west_commands/runners/
Dqemu.py7 from runners.core import RunnerCaps, ZephyrBinaryRunner
D__init__.py8 from runners.core import MissingProgram, ZephyrBinaryRunner
Dxtensa.py9 from runners.core import RunnerCaps, ZephyrBinaryRunner
Decpprog.py8 from runners.core import BuildConfiguration, RunnerCaps, ZephyrBinaryRunner
Dhifive1.py9 from runners.core import RunnerCaps, ZephyrBinaryRunner
Dmisc.py15 from runners.core import RunnerCaps, ZephyrBinaryRunner
Dnrfutil.py13 from runners.core import _DRY_RUN
14 from runners.nrf_common import NrfBinaryRunner
Drenode.py9 from runners.core import RunnerCaps, ZephyrBinaryRunner
Dteensy.py10 from runners.core import ZephyrBinaryRunner
Drenode-robot.py9 from runners.core import RunnerCaps, ZephyrBinaryRunner
Ddediprog.py11 from runners.core import RunnerCaps, ZephyrBinaryRunner
Dgd32isp.py6 from runners.core import RunnerCaps, ZephyrBinaryRunner
Dnative.py9 from runners.core import RunnerCaps, RunnerConfig, ZephyrBinaryRunner
Dprobe_rs.py6 from runners.core import RunnerCaps, ZephyrBinaryRunner
Dxsdb.py11 from runners.core import RunnerCaps, RunnerConfig, ZephyrBinaryRunner
/Zephyr-latest/doc/develop/west/
Dbuild-flash-debug.rst414 - ``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/
Drun_common.py27 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