treewide: remove execute bit and shebang from board.d files
[openwrt/openwrt.git] / target / linux / ramips / rt288x / 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 airlink101,ar670w|\
11 airlink101,ar725w)
12 ucidef_set_led_netdev "wifi_led" "wifi" "rt2800soc-phy0::radio" "wlan0"
13 ;;
14 belkin,f5d8235-v1)
15 ucidef_set_led_netdev "wifi_led" "wifi" "blue:wireless" "wlan0"
16 ;;
17 ralink,v11st-fe)
18 ucidef_set_led_netdev "wifi_led" "wifi" "rt2800pci-phy0::radio" "wlan0"
19 ;;
20 esac
21
22 board_config_flush
23
24 exit 0