2015-07-08 22:25:52 +08:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
|
|
#
|
|
|
|
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
. /lib/ar71xx.sh
|
|
|
|
|
|
|
|
board=$(ar71xx_board_name)
|
|
|
|
|
|
|
|
case "$board" in
|
|
|
|
nanostation-m)
|
2015-09-15 04:09:40 +08:00
|
|
|
ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "8"
|
2015-07-08 22:25:52 +08:00
|
|
|
;;
|
|
|
|
nanostation-m-xw)
|
2015-09-15 04:09:40 +08:00
|
|
|
ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "2"
|
2015-07-08 22:25:52 +08:00
|
|
|
;;
|
|
|
|
cpe510)
|
|
|
|
ucidef_set_gpio_switch "poe_passthrough" "PoE Passthrough" "20"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
ucidef_commit_gpio_switches
|
|
|
|
|
|
|
|
exit 0
|