mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-24 15:56:49 +00:00
20 lines
322 B
Plaintext
20 lines
322 B
Plaintext
|
|
||
|
. /lib/functions/leds.sh
|
||
|
. /lib/functions/uci-defaults.sh
|
||
|
|
||
|
board=$(board_name)
|
||
|
boardname="${board##*,}"
|
||
|
|
||
|
board_config_update
|
||
|
|
||
|
case $board in
|
||
|
extreme-networks,ws-ap3825i)
|
||
|
ucidef_set_led_netdev "lan1" "LAN1" "green:lan1" "eth1"
|
||
|
ucidef_set_led_netdev "lan2" "LAN2" "green:lan2" "eth0"
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
board_config_flush
|
||
|
|
||
|
exit 0
|