You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
537 B
29 lines
537 B
7 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2015 OpenWrt.org
|
||
|
#
|
||
|
|
||
|
. /lib/functions/uci-defaults.sh
|
||
|
|
||
|
board_config_update
|
||
|
|
||
|
board=$(board_name)
|
||
|
boardname="${board##*,}"
|
||
|
|
||
|
case "$board" in
|
||
|
avm,fritzbox-4040)
|
||
|
ucidef_set_led_wlan "wlan" "WLAN" "fritz4040:green:wlan" "phy0tpt" "phy1tpt"
|
||
|
ucidef_set_led_netdev "wan" "WAN" "fritz4040:green:wan" "eth1"
|
||
|
ucidef_set_led_switch "lan" "LAN" "fritz4040:green:lan" "switch0" "0x1e"
|
||
|
;;
|
||
|
glinet,gl-b1300)
|
||
|
ucidef_set_led_wlan "wlan" "WLAN" "${boardname}:green:wlan" "phy0tpt"
|
||
|
;;
|
||
|
*)
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
board_config_flush
|
||
|
|
||
|
exit 0
|