mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-08 14:03:06 +00:00
35 lines
570 B
Plaintext
35 lines
570 B
Plaintext
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||
|
|
||
|
#include "qca9557_dongwon_dw02-412h.dtsi"
|
||
|
|
||
|
/ {
|
||
|
model = "Dongwon T&I DW02-412H (128M)";
|
||
|
compatible = "dongwon,dw02-412h-128m", "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 0x6800000>;
|
||
|
};
|
||
|
};
|
||
|
};
|