Searched refs:yaml (Results 26 – 50 of 168) sorted by relevance
1234567
/Zephyr-latest/submanifests/ |
D | README.txt | 5 See example.yaml.sample for an example.
|
D | example.yaml.sample | 4 # 'example.yaml', in the same directory.
|
/Zephyr-latest/doc/build/dts/ |
D | bindings-intro.rst | 35 .. 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.
|
D | bindings-upstream.rst | 55 - 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/ |
D | snippets.py | 29 import yaml 188 SNIPPET_SCHEMA = yaml.safe_load(f.read()) 295 snippet_data = yaml.safe_load(f.read()) 296 except yaml.scanner.ScannerError:
|
D | zephyr_module.py | 26 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))
|
D | list_boards.py | 14 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/ |
D | README | 29 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/ |
D | domains.cmake | 19 file(GENERATE OUTPUT ${CMAKE_BINARY_DIR}/domains.yaml CONTENT "${domains_yaml}")
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_scl.py | 23 from yaml.scanner import ScannerError 85 import yaml 86 reload(yaml)
|
/Zephyr-latest/samples/subsys/llext/modules/ |
D | Kconfig | 22 and sample.yaml for more information.
|
/Zephyr-latest/doc/_scripts/ |
D | gen_boards_catalog.py | 15 import yaml 134 build_info = yaml.safe_load(f) 316 board_data = yaml.safe_load(f)
|
/Zephyr-latest/doc/develop/west/ |
D | manifest.rst | 80 .. 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 | .editorconfig | 50 [*.{yml,yaml}]
|
D | README.rst | 15 …ns/workflows/twister.yaml?query=branch%3Amain"><img src="https://github.com/zephyrproject-rtos/zep…
|
/Zephyr-latest/tests/cmake/zephyr_get/ |
D | sysbuild.cmake | 5 # including different arguments given to them via testcase.yaml.
|
/Zephyr-latest/samples/sysbuild/hello_world/ |
D | README.rst | 29 :zephyr_file:`samples/sysbuild/hello_world/sample.yaml` using the 44 :zephyr_file:`samples/sysbuild/hello_world/sample.yaml` setup:
|
/Zephyr-latest/cmake/flash/ |
D | CMakeLists.txt | 5 # 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/ |
D | test.dts | 510 // 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/ |
D | twister_blackbox.rst | 38 --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/ |
D | README.rst | 13 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/ |
D | twister_ignore.txt | 16 .github/workflows/codecov.yaml
|
/Zephyr-latest/samples/boards/st/mco/ |
D | README.rst | 23 See :zephyr_file:`dts/bindings/clock/st,stm32-clock-mco.yaml`
|
/Zephyr-latest/scripts/west_commands/ |
D | build.py | 10 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/ |
D | index.rst | 41 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