mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-10 11:09:57 +08:00
procd: Fix USB cellular modems hotplug events
Without this patch, /etc/hotplug.d/tty/30-3g won't be called when you insert or remove a USB-serial cellular modem. (see Ticket #14117) Signed-off-by: Matthew Reeve <mreeve@tenxnetworks.com> SVN-Revision: 41039
This commit is contained in:
parent
7ec499eca5
commit
71cda6a1e0
@ -13,7 +13,7 @@
|
||||
[ "null", "full", "ptmx", "zero" ],
|
||||
],
|
||||
[ "regex", "DEVNAME",
|
||||
[ "^gpio", "^hvc", "^tty" ],
|
||||
[ "^gpio", "^hvc" ],
|
||||
],
|
||||
],
|
||||
[
|
||||
@ -76,10 +76,10 @@
|
||||
],
|
||||
[ "if",
|
||||
[ "and",
|
||||
[ "eq", "SUBSYSTEM",
|
||||
[ "tty", "usb-serial" ]
|
||||
[ "eq", "SUBSYSTEM", "usb-serial" ],
|
||||
[ "regex", "DEVNAME",
|
||||
[ "^ttyUSB", "^ttyACM" ]
|
||||
],
|
||||
[ "regex", "DEVNAME", "^ttyUSB" ],
|
||||
],
|
||||
[ "exec", "/sbin/hotplug-call", "tty" ]
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user