41cc7edc15
The "/dts-v1/;" identifier is supposed to be present once at the top of a device tree file after the includes have been processed. In ath79, we therefore requested to have in the DTS files so far, and omit it in the DTSI files. However, essentially the syntax of the parent ath79.dtsi file already determines the DTS version, so putting it into the DTS files is just a useless repetition. Consequently, this patch puts the dts-v1 statement into the parent ath79.dtsi, which is (indirectly) included by all DTS files. All other occurences are removed. Since the dts-v1 statement needs to be before any other definitions, this also moves the includes to make sure the ath79.dtsi or its descendants are always included first. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
30 lines
518 B
Plaintext
30 lines
518 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "qca9563_glinet_gl-ar750s.dtsi"
|
|
|
|
/ {
|
|
compatible = "glinet,gl-ar750s-nor-nand", "qca,qca9563";
|
|
model = "GL.iNet GL-AR750S (NOR/NAND)";
|
|
};
|
|
|
|
&nor_partitions {
|
|
partition@60000 {
|
|
label = "kernel";
|
|
reg = <0x060000 0x400000>;
|
|
|
|
/*
|
|
* U-Boot bootcmd is "bootm 0x9f060000".
|
|
* So this might be possible to resize in the future.
|
|
*/
|
|
};
|
|
|
|
partition@460000 {
|
|
label = "nor_reserved";
|
|
reg = <0x460000 0xba0000>;
|
|
};
|
|
};
|
|
|
|
&nand_ubi {
|
|
label = "ubi";
|
|
};
|