1a392636a5
The upstream LED naming convention is "device:color:led-name", but it seems that many of supported boards in OpenWrt don't follow this approach. The following patch fixes this inconsistency in dts{,i} files and updates base-files scripts for ramips target: * fixes wrong indentation * keeps case statements structure in same convention as in other scripts (no empty line after ";;", no indentation for case...esac body) * fixes wrong LED names for some of boards (makes them the same as in dts{,i} files) * combines boards with same configuration (ex. set_wifi_led "rt2800pci-phy0::radio" in 01_leds) Signed-off-by: Piotr Dymacz <pepe2k@gmail.com> SVN-Revision: 46664
50 lines
721 B
Plaintext
50 lines
721 B
Plaintext
/dts-v1/;
|
|
|
|
/include/ "Y1.dtsi"
|
|
|
|
/ {
|
|
compatible = "lenovo,Y1", "ralink,mt7620a-soc";
|
|
model = "Lenovo Y1";
|
|
|
|
ethernet@10100000 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&ephy_pins>;
|
|
mtd-mac-address = <&factory 0x4>;
|
|
ralink,port-map = "llllw";
|
|
};
|
|
|
|
gpio-leds {
|
|
compatible = "gpio-leds";
|
|
|
|
power1 {
|
|
label = "y1:blue:power";
|
|
gpios = <&gpio0 9 1>;
|
|
};
|
|
|
|
wlan1 {
|
|
label = "y1:blue:wifi";
|
|
gpios = <&gpio3 0 1>;
|
|
};
|
|
|
|
wlan2 {
|
|
label = "y1:blue:wifi5g";
|
|
gpios = <&gpio2 10 1>;
|
|
};
|
|
|
|
usb {
|
|
label = "y1:blue:usb";
|
|
gpios = <&gpio2 12 1>;
|
|
};
|
|
|
|
lan {
|
|
label = "y1:blue:lan";
|
|
gpios = <&gpio2 15 1>;
|
|
};
|
|
|
|
internet {
|
|
label = "y1:blue:internet";
|
|
gpios = <&gpio2 11 1>;
|
|
};
|
|
};
|
|
};
|