mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-30 10:39:04 +00:00
c4110a524e
HooToo HT-TM05 and RAVPower RP-WD03 have almost identical hardware (except for RAM size) and are from the same vendor (SunValley). Create a common DTSI file for them. Suggested-by: Russell Morris <rmorris@rkmorris.us> Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
30 lines
530 B
Plaintext
30 lines
530 B
Plaintext
/dts-v1/;
|
|
|
|
#include "mt7620n_sunvalley_filehub.dtsi"
|
|
|
|
/ {
|
|
compatible = "ravpower,rp-wd03", "ralink,mt7620n-soc";
|
|
model = "RAVPower RP-WD03";
|
|
|
|
aliases {
|
|
led-boot = &led_wifi_blue;
|
|
led-failsafe = &led_wifi_blue;
|
|
led-running = &led_wifi_blue;
|
|
led-upgrade = &led_wifi_blue;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
wifi_green {
|
|
label = "rp-wd03:green:wifi";
|
|
gpios = <&gpio2 0 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
led_wifi_blue: wifi_blue {
|
|
label = "rp-wd03:blue:wifi";
|
|
gpios = <&gpio3 0 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
};
|
|
};
|