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
1 changed files with 4 additions and 4 deletions
|
@ -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…
Reference in a new issue