Home
last modified time | relevance | path

Searched refs:yaml (Results 26 – 50 of 168) sorted by relevance

1234567

/Zephyr-latest/submanifests/
DREADME.txt5 See example.yaml.sample for an example.
Dexample.yaml.sample4 # 'example.yaml', in the same directory.
/Zephyr-latest/doc/build/dts/
Dbindings-intro.rst35 .. code-block:: yaml
109 above example binding would be named :file:`foo-company,bar-device.yaml` by
126 its name ends with ``.yaml`` or ``.yml``.
135 :file:`my-app/dts/bindings/serial/my-company,my-serial-port.yaml` would be
136 found, but :file:`my-app/my-company,my-serial-port.yaml` would be ignored.
Dbindings-upstream.rst55 - For example, a binding for compatible ``vnd,foo`` must be named ``vnd,foo.yaml``.
58 ``vnd,foo-bar.yaml``.
77 .. code-block:: yaml
84 .. code-block:: yaml
174 .. code-block:: yaml
194 .. code-block:: yaml
225 controllers defined in :zephyr_file:`dts/bindings/adc/adc-controller.yaml`.
/Zephyr-latest/scripts/
Dsnippets.py29 import yaml
188 SNIPPET_SCHEMA = yaml.safe_load(f.read())
295 snippet_data = yaml.safe_load(f.read())
296 except yaml.scanner.ScannerError:
Dzephyr_module.py26 import yaml
32 from yaml import CSafeLoader as SafeLoader
34 from yaml import SafeLoader
195 schema = yaml.load(METADATA_SCHEMA, Loader=SafeLoader)
219 meta = yaml.load(f.read(), Loader=SafeLoader)
905 yaml.Dumper.ignore_aliases = lambda self, data: True
906 fp.write(yaml.dump(meta))
Dlist_boards.py14 import yaml
19 from yaml import CSafeLoader as SafeLoader
21 from yaml import SafeLoader
25 board_schema = yaml.load(f.read(), Loader=SafeLoader)
230 b = yaml.load(f.read(), Loader=SafeLoader)
/Zephyr-latest/tests/kernel/timer/timer_behavior/
DREADME29 named on testcase.yaml, with the following interface:
34 to run; `options` is a string defined on testcase.yaml with options known to
57 must be available on the device. Also, testcase.yaml
62 Check testcase.yaml for an example using the saleae_logic2 module.
/Zephyr-latest/share/sysbuild/cmake/
Ddomains.cmake19 file(GENERATE OUTPUT ${CMAKE_BINARY_DIR}/domains.yaml CONTENT "${domains_yaml}")
/Zephyr-latest/scripts/tests/twister/
Dtest_scl.py23 from yaml.scanner import ScannerError
85 import yaml
86 reload(yaml)
/Zephyr-latest/samples/subsys/llext/modules/
DKconfig22 and sample.yaml for more information.
/Zephyr-latest/doc/_scripts/
Dgen_boards_catalog.py15 import yaml
134 build_info = yaml.safe_load(f)
316 board_data = yaml.safe_load(f)
/Zephyr-latest/doc/develop/west/
Dmanifest.rst80 .. code-block:: yaml
122 .. code-block:: yaml
171 .. code-block:: yaml
327 .. code-block:: yaml
380 .. code-block:: yaml
434 .. code-block:: yaml
579 .. code-block:: yaml
595 .. code-block:: yaml
639 .. code-block:: yaml
651 .. code-block:: yaml
[all …]
/Zephyr-latest/
D.editorconfig50 [*.{yml,yaml}]
DREADME.rst15 …ns/workflows/twister.yaml?query=branch%3Amain"><img src="https://github.com/zephyrproject-rtos/zep…
/Zephyr-latest/tests/cmake/zephyr_get/
Dsysbuild.cmake5 # including different arguments given to them via testcase.yaml.
/Zephyr-latest/samples/sysbuild/hello_world/
DREADME.rst29 :zephyr_file:`samples/sysbuild/hello_world/sample.yaml` using the
44 :zephyr_file:`samples/sysbuild/hello_world/sample.yaml` setup:
/Zephyr-latest/cmake/flash/
DCMakeLists.txt5 # generator expression when writing the flash runner yaml file.
86 set(runners_yaml "${PROJECT_BINARY_DIR}/runners.yaml")
121 # Usually, the runner has arguments. Append them to runners.yaml,
/Zephyr-latest/scripts/dts/python-devicetree/tests/
Dtest.dts510 // For testing that neither 'include: [foo.yaml, bar.yaml]' nor
511 // 'include: [bar.yaml, foo.yaml]' causes errors when one of the files
/Zephyr-latest/doc/develop/test/twister/
Dtwister_blackbox.rst38 --test-config $TEST_DATA/test_config.yaml -p qemu_x86 -p frdm_k64f
69 tests use** ``test_data.yaml`` **as a filename, not** ``testcase.yaml`` **!**
/Zephyr-latest/samples/boards/nordic/coresight_stm/
DREADME.rst13 There are three sample configurations in the :file:`sample.yaml`.
45 To build the sample, use configuration setups from the :file:`sample.yaml` using the ``-T`` option.
/Zephyr-latest/scripts/ci/
Dtwister_ignore.txt16 .github/workflows/codecov.yaml
/Zephyr-latest/samples/boards/st/mco/
DREADME.rst23 See :zephyr_file:`dts/bindings/clock/st,stm32-clock-mco.yaml`
/Zephyr-latest/scripts/west_commands/
Dbuild.py10 import yaml
266 yaml.dump(build_command, f, default_flow_style=False)
327 y = yaml.safe_load(stream)
328 except yaml.YAMLError as exc:
/Zephyr-latest/boards/snps/nsim/arc_v/doc/
Dindex.rst41 toolchains for the board targets in the corresponding ``.yaml`` file.
43 …nsim_arc_v/rmx100`` board we can check :zephyr_file:`boards/snps/nsim/arc_v/nsim_arc_v_rmx100.yaml`
45 The supported toolchains are listed in ``toolchain:`` array in ``.yaml`` file, where we can find:
163 ``<board_name>.yaml`` as an entry point for board target.

1234567