summaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/mtd/partition.txt
blob: ab21ff25bb11a3a0ae4d7804d9fc8a2e4f1b6e29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Representing flash partitions in devicetree

In addition to the upstream binding, another property is added:

Optional properties:
- partuuid : The partition UUID for this partition.


Examples:

flash@0 {
	partitions {
		compatible = "fixed-partitions";
		#address-cells = <1>;
		#size-cells = <1>;

		state_part: state {
			partuuid = "16367da7-c518-499f-9aad-e1f366692365";
		};
	};
};