treewide: remove execute bit and shebang from board.d files
[openwrt/staging/rmilecki.git] / target / linux / ramips / rt3883 / base-files / etc / board.d / 01_leds
1
2 . /lib/functions/leds.sh
3 . /lib/functions/uci-defaults.sh
4
5 board=$(board_name)
6
7 board_config_update
8
9 case $board in
10 belkin,f9k1109v1)
11 ucidef_set_led_netdev "lan" "lan" "blue:wps" "eth0"
12 ;;
13 edimax,br-6475nd)
14 ucidef_set_led_netdev "wifi_led" "wifi" "amber:wlan" "wlan0"
15 ;;
16 omnima,hpm)
17 ucidef_set_led_netdev "eth" "ETH" "green:eth" "eth0"
18 ucidef_set_led_netdev "wifi_led" "wifi" "green:wifi" "wlan0"
19 ;;
20 esac
21
22 board_config_flush
23
24 exit 0