brintos

brintos / linux-shallow public Read only

0
0
Text · 960 B · 1dda2c8 Raw
43 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/mtd/partitions/partitions.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Partitions8 9description: |10  This binding is generic and describes the content of the partitions container11  node. All partition parsers must be referenced here.12 13maintainers:14  - Miquel Raynal <miquel.raynal@bootlin.com>15 16oneOf:17  - $ref: arm,arm-firmware-suite.yaml18  - $ref: brcm,bcm4908-partitions.yaml19  - $ref: brcm,bcm947xx-cfe-partitions.yaml20  - $ref: fixed-partitions.yaml21  - $ref: linksys,ns-partitions.yaml22  - $ref: qcom,smem-part.yaml23  - $ref: redboot-fis.yaml24  - $ref: tplink,safeloader-partitions.yaml25 26properties:27  compatible: true28 29  '#address-cells':30    enum: [1, 2]31 32  '#size-cells':33    enum: [1, 2]34 35patternProperties:36  "^partition(-.+|@[0-9a-f]+)$":37    $ref: partition.yaml38 39required:40  - compatible41 42unevaluatedProperties: false43