You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
587 B
25 lines
587 B
#!/bin/sh
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
. /lib/ramips.sh
|
|
|
|
board_config_update
|
|
|
|
board=$(ramips_board_name)
|
|
|
|
case "$board" in
|
|
ubnt-erx)
|
|
ucidef_add_gpio_switch "poe_passthrough" "PoE Passthrough" "0"
|
|
;;
|
|
ubnt-erx-sfp)
|
|
ucidef_add_gpio_switch "poe_power_port0" "PoE Power Port0" "496"
|
|
ucidef_add_gpio_switch "poe_power_port1" "PoE Power Port1" "497"
|
|
ucidef_add_gpio_switch "poe_power_port2" "PoE Power Port2" "498"
|
|
ucidef_add_gpio_switch "poe_power_port3" "PoE Power Port3" "499"
|
|
ucidef_add_gpio_switch "poe_power_port4" "PoE Power Port4" "500"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|
|
|