Re: MtxOrb device
"Dave Liquorice" <[email protected]> Sat, 25 Jan 2014 16:04:21 +0000 (GMT)
| Newsgroups | gmane.comp.sysutils.lcdproc |
|---|---|
| Message-ID | <[email protected]> |
On Sat, 25 Jan 2014 16:54:15 +0100, Josu Lazkano wrote:
> Hello, I try with this:
>
> KERNEL=="ttyUSB0", SUBSYSTEM=="usb", ATTRS{idVendor}=="1b3d",
> ATTRS{idProduct}=="0127", SYMLINK+="lcd"
>
> But it does not assign the /dev/lcd device.
use either the KERNEL== or the SUBSYSTEM== not both.
Also with the KERNEL one you need the range [0-9] and wildcard * to get a
match with the possible kernel device names:
KERNEL=="ttyUSB[0-9]*".
--
Cheers
Dave.