blob: 98b00217b949d263ad6a6213b69c74a53b8ad4e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
/dts-v1/;
/plugin/;
/ {
compatible = "gatonetworks,gdsp", "mediatek,mt7981";
fragment@1 {
target = <&mmc0>;
__overlay__ {
#address-cells = <1>;
#size-cells = <0>;
card@0 {
compatible = "mmc-card";
reg = <0>;
partitions {
compatible = "gpt-partitions";
sdmmc_fit: block-partition-fit {
partname = "FIT";
};
};
};
};
};
};
&{/chosen} {
rootdisk = <&sdmmc_fit>;
};
|