diff options
author | Arjun AK <arjunak234@gmail.com> | 2020-07-16 21:22:24 +0530 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2021-07-02 11:33:44 +0200 |
commit | fc4b5411b3a2105df4655e9623277d88489f6710 (patch) | |
tree | 100528b2b9c61d92a4b9b4ecec308b4a95912ddf /package | |
parent | d666ebcaa327a1e03992a484d9601ea5f2e6b19a (diff) | |
download | openwrt-fc4b5411b3a2105df4655e9623277d88489f6710.tar.gz openwrt-fc4b5411b3a2105df4655e9623277d88489f6710.tar.bz2 openwrt-fc4b5411b3a2105df4655e9623277d88489f6710.zip |
package/comgt: Handle bind/unbind events
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)
Diffstat (limited to 'package')
-rw-r--r-- | package/network/utils/comgt/files/3g.usb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/network/utils/comgt/files/3g.usb b/package/network/utils/comgt/files/3g.usb index 8f0d62ca83..9c7d07a0e6 100644 --- a/package/network/utils/comgt/files/3g.usb +++ b/package/network/utils/comgt/files/3g.usb @@ -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 |