The label property of the fixed-partitions child binding was duplicated with two different values. This is invalid yaml, but went unnoticed by pyYAML. Removed first entry to preserve value produced by pyYAML behavior of overwriting duplicates. Signed-off-by: Trond Einar Snekvik <Trond.Einar.Snekvik@nordicsemi.no>
31 lines
793 B
YAML
31 lines
793 B
YAML
description: Flash partitions parent node
|
|
|
|
compatible: "fixed-partitions"
|
|
|
|
properties:
|
|
"#address-cells":
|
|
type: int
|
|
required: false
|
|
description: number of address cells in reg property
|
|
|
|
"#size-cells":
|
|
type: int
|
|
required: false
|
|
description: number of size cells in reg property
|
|
|
|
child-binding:
|
|
description: Flash partition child node
|
|
properties:
|
|
label:
|
|
type: string
|
|
required: false
|
|
description: Human readable string describing the device (used by Zephyr for API name)
|
|
read-only:
|
|
type: boolean
|
|
required: false
|
|
description: if the partition is read-only or not
|
|
reg:
|
|
type: array
|
|
description: register space
|
|
required: true
|