firmware/src/packages/fff/fff-support/ath79/usr/lib/fff-support/activate_poe_passthrough.sh
Adrian Schmutzler e850e221db treewide: update names for OpenWrt 20.xx
Some devices were renamed since the last stable release.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Reviewed-by: Fabian Bläse <fabian@blaese.de>
2021-06-08 20:01:54 +02:00

10 lines
275 B
Bash
Executable File

#!/bin/sh
# This enables PoE passthrough so it is persistent through reboots,
# but reset after firmware upgrade
if uci -q get "system.poe_passthrough" > /dev/null ; then
uci -q set "system.poe_passthrough.value=1"
uci -q commit system
/etc/init.d/gpio_switch restart
fi