Home
last modified time | relevance | path

Searched +full:cpucluster +full:- +full:schema (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/scripts/schemas/
Dsoc-schema.yml1 # SPDX-License-Identifier: Apache-2.0
5 ## A pykwalify schema for basic validation of the structure of a SoC
10 schema;cpucluster-schema:
14 - type: map
20 schema;soc-schema:
24 - type: map
30 include: cpucluster-schema
32 schema;soc-extend-schema:
36 - type: map
45 include: cpucluster-schema
[all …]
Dboard-schema.yml1 # 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
19 cpucluster:
24 include: variant-schema
26 schema;extend-variant-schema:
30 - type: map
39 schema;board-schema:
76 - type: map
[all …]
/Zephyr-latest/scripts/
Dlist_boards.py4 # SPDX-License-Identifier: Apache-2.0
23 BOARD_SCHEMA_PATH = str(Path(__file__).parent / 'schemas' / 'board-schema.yml')
66 class Cpucluster: class
84 cpus.append(Cpucluster(c,
85 [Variant.from_dict(v) for v in variants if c == v['cpucluster']]
219 board_name = file_name[:-len('_defconfig')]
229 with board_yml.open('r', encoding='utf-8') as f:
239 if len(mutual_exclusive - b.keys()) < 1:
246 if len(mutual_exclusive - board.keys()) < 1:
272 if len(mutual_exclusive - board.keys()) < 1:
[all …]