summaryrefslogtreecommitdiff
path: root/target/linux/ar71xx/base-files/etc/uci-defaults/01_gpio-switches
blob: 81d3982ed8bf98e01ce2e161017f088a1d0f60dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
#
# Copyright (C) 2015 OpenWrt.org
#

. /lib/functions/uci-defaults.sh
. /lib/ar71xx.sh

board=$(ar71xx_board_name)

case "$board" in
nanostation-m)
	ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "2"
	;;
nanostation-m-xw)
	ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "8"
	;;
cpe510)
	ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "20"
	;;
esac

ucidef_commit_gpio_switches

exit 0