diff options
author | John Klug <john.klug@multitech.com> | 2019-01-15 11:57:56 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2019-01-15 11:57:56 -0600 |
commit | fc2e72062df0bb1480ac63e0b9f4f34463cbb722 (patch) | |
tree | 7416a558b23b9e9b56094bbdcaa3d0dce9de6225 /recipes-core/udev | |
parent | e49a1faff41662f7099832d67e41fa2d83ffd20c (diff) | |
download | meta-mlinux-fc2e72062df0bb1480ac63e0b9f4f34463cbb722.tar.gz meta-mlinux-fc2e72062df0bb1480ac63e0b9f4f34463cbb722.tar.bz2 meta-mlinux-fc2e72062df0bb1480ac63e0b9f4f34463cbb722.zip |
Wrong kernel device name for symlinks
Diffstat (limited to 'recipes-core/udev')
-rw-r--r-- | recipes-core/udev/eudev/mtcdt/mtcdt.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-core/udev/eudev/mtcdt/mtcdt.rules b/recipes-core/udev/eudev/mtcdt/mtcdt.rules index d7ff3e1..95ac967 100644 --- a/recipes-core/udev/eudev/mtcdt/mtcdt.rules +++ b/recipes-core/udev/eudev/mtcdt/mtcdt.rules @@ -1,6 +1,6 @@ ACTION=="remove", GOTO="mlinux_end" SUBSYSTEM!="tty", GOTO="mlinux_end" -KERNEL!="ttyXRUSB[0-9]*", GOTO="mlinux_end" +KERNEL!="ttyACM[0-9]*", GOTO="mlinux_end" SUBSYSTEMS=="usb", ENV{ID_IFACE}="$attr{bInterfaceNumber}" ENV{ID_IFACE}=="", GOTO="mlinux_end" |