ath79: add support for LibreRouter v1
[openwrt/staging/wigyori.git] / target / linux / ath79 / base-files / etc / board.d / 03_gpio_switches
1 #!/bin/sh
2 #
3 # Copyright (C) 2018 OpenWrt.org
4 #
5
6 . /lib/functions/uci-defaults.sh
7
8 board_config_update
9
10 board=$(board_name)
11
12 case "$board" in
13 dlink,dir-825-c1|\
14 dlink,dir-835-a1)
15 ucidef_add_gpio_switch "wan_led_auto" "WAN LED Auto" "20" "0"
16 ;;
17 librerouter,librerouter-v1)
18 ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "1" "0"
19 ;;
20 ubnt,nanostation-ac)
21 ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "3"
22 ;;
23 esac
24
25 board_config_flush
26
27 exit 0