mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
34 lines
533 B
Plaintext
34 lines
533 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
/ {
|
|
aliases {
|
|
led-boot = &led_link4;
|
|
led-failsafe = &led_link4;
|
|
label-mac-device = &wifi;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
link1 {
|
|
label = "red:link1";
|
|
gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
link2 {
|
|
label = "orange:link2";
|
|
gpios = <&gpio 1 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
link3 {
|
|
label = "green:link3";
|
|
gpios = <&gpio 11 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
led_link4: link4 {
|
|
label = "green:link4";
|
|
gpios = <&gpio 7 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
};
|
|
};
|