mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Better check for fixed USB device
This commit is contained in:
parent
f15e1845e8
commit
2443eb1cd0
1 changed files with 4 additions and 7 deletions
|
@ -25,7 +25,7 @@ omr_intf_set() {
|
||||||
config_get proto "$1" proto
|
config_get proto "$1" proto
|
||||||
devicename=$(echo "$device" | cut -d'/' -f3)
|
devicename=$(echo "$device" | cut -d'/' -f3)
|
||||||
|
|
||||||
if [ -n "$ifname" ] && [ -L /sys/class/net/${ifname} ]; then
|
if [ -n "$ifname" ] && [ -f /sys/class/net/${ifname}/device/uevent ]; then
|
||||||
devicepath=$(readlink -f /sys/class/net/${ifname})
|
devicepath=$(readlink -f /sys/class/net/${ifname})
|
||||||
if [ -n "$devicepath" ] && [ "$(echo ${devicepath} | grep virtual)" = "" ]; then
|
if [ -n "$devicepath" ] && [ "$(echo ${devicepath} | grep virtual)" = "" ]; then
|
||||||
uci -q set network.$1.modalias="$(cat /sys/class/net/${ifname}/device/uevent | grep MODALIAS | cut -d '=' -f2 | tr -d '\n')"
|
uci -q set network.$1.modalias="$(cat /sys/class/net/${ifname}/device/uevent | grep MODALIAS | cut -d '=' -f2 | tr -d '\n')"
|
||||||
|
@ -34,12 +34,9 @@ omr_intf_set() {
|
||||||
uci -q delete network.$1.device
|
uci -q delete network.$1.device
|
||||||
uci -q delete network.$1.modalias
|
uci -q delete network.$1.modalias
|
||||||
fi
|
fi
|
||||||
elif [ -n "$device" ] && [ -L /sys/bus/usb-serial/devices/${devicename} ]; then
|
elif [ -n "$device" ] && [ -f /sys/bus/usb-serial/devices/${devicename}/device/uevent ]; then
|
||||||
devicepath=$(readlink -f /sys/bus/usb-serial/devices/${devicename})
|
uci -q set network.$1.modalias="$(cat /sys/bus/usb-serial/devices/${devicename}/device/uevent | grep MODALIAS | cut -d '=' -f2 | tr -d '\n')"
|
||||||
[ -n "$devicepath" ] && {
|
uci -q set network.$1.product="$(cat /sys/bus/usb-serial/devices/${devicename}/device/uevent | grep PRODUCT | cut -d '=' -f2 | tr -d '\n')"
|
||||||
uci -q set network.$1.modalias="$(cat /sys/bus/usb-serial/devices/${devicename}/device/uevent | grep MODALIAS | cut -d '=' -f2 | tr -d '\n')"
|
|
||||||
uci -q set network.$1.product="$(cat /sys/bus/usb-serial/devices/${devicename}/device/uevent | grep PRODUCT | cut -d '=' -f2 | tr -d '\n')"
|
|
||||||
}
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[ -z "$multipath" ] || [ "$multipath" = "off" ] && [ "$1" != "omrvpn" ] && [ "$1" != "glorytun" ] && return
|
[ -z "$multipath" ] || [ "$multipath" = "off" ] && [ "$1" != "omrvpn" ] && [ "$1" != "glorytun" ] && return
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue