mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
19 lines
297 B
Plaintext
19 lines
297 B
Plaintext
|
|
. /lib/functions/leds.sh
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board=$(board_name)
|
|
|
|
board_config_update
|
|
|
|
case $board in
|
|
xiaomi,redmi-router-ax6000)
|
|
ucidef_set_led_netdev "wan" "wan" "blue:network" "wan"
|
|
ucidef_set_led_heartbeat "status" "status" "white:status"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|