blob: 2420dc11a9c2ae015b361711639bbd5dfacc8cb4 (
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
33
34
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
#include "qca9557_dongwon_dw02-412h.dtsi"
/ {
model = "Dongwon T&I DW02-412H (64M)";
compatible = "dongwon,dw02-412h-64m", "qca,qca9557";
};
&nand {
status = "okay";
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
partition@0 {
label = "current";
reg = <0x0 0x1000000>;
read-only;
};
partition@1000000 {
label = "kernel";
reg = <0x1000000 0x800000>;
};
partition@1800000 {
label = "ubi";
reg = <0x1800000 0x2800000>;
};
};
};
|