initial commit

This commit is contained in:
Andreas Wrede
2026-06-28 15:09:28 -04:00
parent bd865831d6
commit cc25dee7e2
27 changed files with 738 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/sh
# Disable EEE on USB ethernet (r8152): its idle power-save parks the backup WAN link
# and breaks van-failover health probes. See wayback-campervan-ap memory.
iface="$1"; action="$2"
[ "$action" = "up" ] || exit 0
case "$iface" in
en*|eth*) /usr/sbin/ethtool --set-eee "$iface" eee off >/dev/null 2>&1 || true ;;
esac