mirror of https://github.com/hak5/openwrt.git
47 lines
890 B
Plaintext
47 lines
890 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 = &led_power_orange;
|
|
led-failsafe = &led_power_orange;
|
|
led-running = &led_power_green;
|
|
led-upgrade = &led_power_orange;
|
|
serial0 = &uart;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
led_power_green: power_green {
|
|
label = "d-link:green:power";
|
|
gpios = <&gpio 22 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
wan_green {
|
|
label = "d-link:green:wan";
|
|
gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
wps {
|
|
label = "d-link:green:wps";
|
|
gpios = <&gpio 15 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
led_power_orange: power_orange {
|
|
label = "d-link:orange:power";
|
|
gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
wan_orange {
|
|
label = "d-link:orange:wan";
|
|
gpios = <&gpio 19 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|