Quentin Dufour
7ef652b184
XDP file path was in the var folder which is a virtual link to tmp folder. add hotplug script to put the script xdp on the interface wwan when the command ifup -a wwan0 is called. wwan_loop service crash on the launch, because it launched before the interface wwan set up.
6 lines
127 B
Bash
Executable file
6 lines
127 B
Bash
Executable file
#!/bin/sh
|
|
|
|
while true; do
|
|
mmcli --modem 0 --monitor-state | while read r ; do /usr/sbin/wwan_reconnect ; done
|
|
sleep 5
|
|
done
|