Home
last modified time | relevance | path

Searched +full:extend +full:- +full:variant +full:- +full:schema (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/scripts/schemas/
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
24 include: variant-schema
26 schema;extend-variant-schema:
30 - type: map
39 schema;board-schema:
43 required: false # Note: either name or extend is required, but that is handled in python
50 extend:
[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')
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 …]
Dcheckpatch.pl2 # 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/doc/releases/
Dmigration-guide-3.7.rst22 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 …]