mirror of https://github.com/hak5/openwrt.git
48 lines
873 B
Plaintext
48 lines
873 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/dts-v1/;
|
|
|
|
#include "ar9344_dlink_dir-8x5.dtsi"
|
|
|
|
/ {
|
|
model = "D-LINK DIR-835 A1";
|
|
compatible = "dlink,dir-835-a1", "qca,ar9344";
|
|
|
|
aliases {
|
|
led-boot = &orange_power;
|
|
led-failsafe = &orange_power;
|
|
led-running = &green_power;
|
|
led-upgrade = &orange_power;
|
|
serial0 = &uart;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
green_power: green_power {
|
|
label = "d-link:green:power";
|
|
gpios = <&gpio 22 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
green_wan {
|
|
label = "d-link:green:wan";
|
|
gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
green_wps {
|
|
label = "d-link:green:wps";
|
|
gpios = <&gpio 15 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
orange_power: orange_power {
|
|
label = "d-link:orange:power";
|
|
gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
orange_wan {
|
|
label = "d-link:orange:wan";
|
|
gpios = <&gpio 19 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|
|
|