Searched +full:variant +full:- +full:schema (Results 1 – 7 of 7) sorted by relevance
/Zephyr-latest/scripts/schemas/ |
D | board-schema.yml | 1 # SPDX-License-Identifier: Apache-2.0 5 ## A pykwalify schema for basic validation of the structure of a 10 schema;variant-schema: 14 - type: map 24 include: variant-schema 26 schema;extend-variant-schema: 30 - type: map 39 schema;board-schema: 76 - type: map 85 - type: map [all …]
|
/Zephyr-latest/scripts/ |
D | list_boards.py | 4 # SPDX-License-Identifier: Apache-2.0 23 BOARD_SCHEMA_PATH = str(Path(__file__).parent / 'schemas' / 'board-schema.yml') 53 class Variant: class 58 def from_dict(variant): argument 60 for v in variant.get('variants', []): 61 variants.append(Variant.from_dict(v)) 62 return Variant(variant['name'], variants) 85 [Variant.from_dict(v) for v in variants if c == v['cpucluster']] 88 return Soc(soc.name, variants=[Variant.from_dict(v) for v in variants]) 134 node = Variant(None) [all …]
|
D | checkpatch.pl | 2 # SPDX-License-Identifier: GPL-2.0 7 # (c) 2008-2010 Andy Whitcroft <apw@canonical.com> 8 # (c) 2010-2018 Joe Perches <joe@perches.com> 67 my $git_command ='export LANGUAGE=en_US.UTF-8; git'; 78 -q, --quiet quiet 79 --no-tree run without a kernel tree 80 --no-signoff do not check for 'Signed-off-by' line 81 --patch treat FILE as patchfile (default) 82 --emacs emacs compile window format 83 --terse one line per report [all …]
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | platform.py | 4 # Copyright (c) 2018-2022 Intel Corporation 7 # SPDX-License-Identifier: Apache-2.0 30 def is_runnable(self) -> bool: 49 os.path.join(ZEPHYR_BASE, "scripts", "schemas", "twister", "platform-schema.yaml") 76 self.tier = -1 99 # defauly. Individual variant information will replace the default data 152 # toolchain ("zephyr", "cross-compile", "xtools" options) and for some targets we haven't 157 "arm64": ["zephyr", "cross-compile"], 160 "riscv": ["zephyr", "cross-compile"], 179 def simulator_by_name(self, sim_name: str | None) -> Simulator | None:
|
/Zephyr-latest/scripts/footprint/ |
D | pack_as_twister.py | 5 # SPDX-License-Identifier: Apache-2.0 9 into a JSON files compatible with Twister report schema making them ready for upload 15 The BOARD name itself can be in HWMv2 format as 'BOARD/SOC' or 'BOARD/SOC/VARIANT' 16 with the corresponding sub-directories. 18 For example, an input path `./**/*v3.6.0-rc3-*/footprints/**/frdm_k64f/` will be 19 expanded by bash to all sub-directories with the 'footprints' data `v3.6.0-rc3` 22 `shopt -s globstar`. 29 This scripts has `--test-name` parameter to customize how to compose test names 48 VERSION_COMMIT_RE = re.compile(r".*-g([a-f0-9]{12})$") 71 console.setFormatter(logging.Formatter('%(asctime)s - %(levelname)-8s - %(message)s')) [all …]
|
/Zephyr-latest/doc/releases/ |
D | release-notes-4.0.rst | 15 is now the standard way to provide device-specific protection to data at rest. (:github:`76222`) 18 :ref:`ZMS <zms_api>` is a new key-value storage subsystem compatible with all non-volatile storage 25 runtime configuration through vendor specific APIs. Initially the :dtcompatible:`nordic,nrf-comp`, 26 :dtcompatible:`nordic,nrf-lpcomp` and :dtcompatible:`nxp,kinetis-acmp` are supported. 31 Initially implemented drivers include a simple :dtcompatible:`zephyr,gpio-steppers` and a complex 32 sensor-less stall-detection capable with integrated ramp-controller :dtcompatible:`adi,tmc5041`. 50 directory for :zephyr:code-sample-category:`code samples <samples>`. 70 * :cve:`2024-8798`: Under embargo until 2024-11-22 71 * :cve:`2024-10395`: Under embargo until 2025-01-23 72 * :cve:`2024-11263` `Zephyr project bug tracker GHSA-jjf3-7x72-pqm9 [all …]
|
D | migration-guide-3.7.rst | 22 out-of-tree SoCs and boards to be ported to the new model. See the 25 * The following build-time generated headers: 27 .. list-table:: 28 :header-rows: 1 30 * - Affected header files 31 * - ``app_version.h`` 32 * - ``autoconf.h`` 33 * - ``cmake_intdef.h`` 34 * - ``core-isa-dM.h`` 35 * - ``devicetree_generated.h`` [all …]
|