...
https://www.raspberrypi.org/documentation/hardware/computemodule/cm-emmc-flashing.md
Step to the point “Building RPiBoot on your host system (Cygwin/Linux)”
Is there …?
...
Is there any way to cyclically reconnect the RevPi using a script?
Code Block |
---|
#!/bin/bash
TARGET_IP="192.168.20.189"
while true; do
if ping -c 1 $TARGET_IP > /dev/null 2>&1; then
echo "Ethernet connection is active"
else
echo "Ethernet connection is down, restarting network service"
systemctl restart networking
fi
sleep 60
done |
Is there any experience in the Debian 10 area?
...