Knotenkonfig/Richtfunk/bb-artfiles-kern/etc/rc.local

16 lines
489 B
Plaintext
Raw Normal View History

2020-04-20 10:09:09 +02:00
# Put your custom commands here that should be executed once
# the system init finished. By default this file does nothing.
# Hop penalty heruntersetzen
# No uci support for hop penalty after Gluon v2019.1.2
INTERFACE="bat0"
PENALTY="5"
CURRENT=$(cat /sys/class/net/$INTERFACE/mesh/hop_penalty)
if [ "$PENALTY" != "$CURRENT" ]; then
echo $PENALTY > /sys/class/net/$INTERFACE/mesh/hop_penalty
uci set batman-adv.$INTERFACE.hop_penalty=$PENALTY
uci commit batman-adv
fi
exit 0