mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
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>
68 lines
1.1 KiB
Plaintext
68 lines
1.1 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "qca9563_tplink_archer-x7-v5.dtsi"
|
|
|
|
/ {
|
|
compatible = "tplink,archer-c7-v5", "qca,qca9563";
|
|
model = "TP-Link Archer C7 v5";
|
|
};
|
|
|
|
&keys {
|
|
reset {
|
|
label = "Reset button";
|
|
linux,code = <KEY_RESTART>;
|
|
gpios = <&gpio 5 GPIO_ACTIVE_LOW>;
|
|
debounce-interval = <60>;
|
|
};
|
|
};
|
|
|
|
&mtdparts {
|
|
partition@0 {
|
|
label = "factory-uboot";
|
|
reg = <0x000000 0x020000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@20000 {
|
|
label = "u-boot";
|
|
reg = <0x020000 0x020000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@40000 {
|
|
label = "partition-table";
|
|
reg = <0x040000 0x010000>;
|
|
read-only;
|
|
};
|
|
|
|
art: partition@50000 {
|
|
label = "art";
|
|
reg = <0x050000 0x010000>;
|
|
read-only;
|
|
};
|
|
|
|
info: partition@60000 {
|
|
label = "info";
|
|
reg = <0x060000 0x020000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@80000 {
|
|
label = "user-config";
|
|
reg = <0x080000 0x040000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@c0000 {
|
|
label = "firmware";
|
|
reg = <0x0c0000 0xf00000>;
|
|
compatible = "denx,uimage";
|
|
};
|
|
|
|
partition@ff0000 {
|
|
label = "default-config";
|
|
reg = <0xff0000 0x010000>;
|
|
read-only;
|
|
};
|
|
};
|