package/comgt: Handle bind/unbind events
authorArjun AK <arjunak234@gmail.com>
Thu, 16 Jul 2020 15:52:24 +0000 (21:22 +0530)
committerPetr Štetiar <ynezz@true.cz>
Fri, 2 Jul 2021 09:33:44 +0000 (11:33 +0200)
This script was expecting only add/remove events which has not been the
case since Kernel 4.12 (which added bind/unbind). Bind events were getting
treated as remove events which would cause hotplugged 3g modems to not
work.

More info:
https://lkml.org/lkml/2018/12/23/128
https://github.com/systemd/systemd/issues/8221

Signed-off-by: Arjun AK <arjunak234@gmail.com>
(cherry picked from commit 89ef883b92b3a87d9ab1bd289de26b9e72681dac)

package/network/utils/comgt/files/3g.usb

index 8f0d62ca83a54c7c71369a0e4793d1c509adda1e..9c7d07a0e64984f6840326a2e84ed831213ca439 100644 (file)
@@ -23,6 +23,8 @@ find_3g_iface() {
        fi
 }
 
+[ "$ACTION" = add ] || [ "$ACTION" = remove ] || exit 0
+
 case "$DEVICENAME" in
        tty*)
                [ -e "/dev/$DEVICENAME" ] || [ "$ACTION" = remove ] || exit 0