mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-05 22:07:06 +08:00
36 lines
550 B
Plaintext
36 lines
550 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "qcom-ipq4019-c526a.dtsi"
|
|
|
|
/ {
|
|
model = "HiWiFi C526A";
|
|
compatible = "hiwifi,c526a";
|
|
};
|
|
|
|
&nand {
|
|
status = "okay";
|
|
|
|
nand@0 {
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
partition@0 {
|
|
label = "ubi";
|
|
reg = <0x0 0x2c00000>;
|
|
};
|
|
|
|
partition@2c00000 {
|
|
label = "hiwifi_rootfs";
|
|
reg = <0x2c00000 0x2c00000>;
|
|
};
|
|
|
|
partition@5800000 {
|
|
label = "hiwifi_opt";
|
|
reg = <0x5800000 0x2800000>;
|
|
};
|
|
};
|
|
};
|
|
};
|