diff options
Diffstat (limited to 'velleman.rules')
-rw-r--r-- | velleman.rules | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/velleman.rules b/velleman.rules new file mode 100644 index 0000000..f1afc8f --- /dev/null +++ b/velleman.rules @@ -0,0 +1,19 @@ +# velleman.rules a udev rules file for velleman K8055/VM110. +# Put this file in /etc/udev/rules.d +# +# To access the devices under a regular user account, you must +# be in the k8055 group. +# +# You can add a RUN="..." attribute to run some arbitrary script +# when the device is plugged in. + +SUBSYSTEM !="usb_device", ACTION !="add", GOTO="velleman_rules_end" + +SYSFS{idVendor}=="10cf", SYSFS{idProduct}=="5500", SYMLINK+="k8055_0" +SYSFS{idVendor}=="10cf", SYSFS{idProduct}=="5501", SYMLINK+="k8055_1" +SYSFS{idVendor}=="10cf", SYSFS{idProduct}=="5502", SYMLINK+="k8055_2" +SYSFS{idVendor}=="10cf", SYSFS{idProduct}=="5503", SYMLINK+="k8055_3" + +MODE="0660", GROUP="k8055" + +LABEL="velleman_rules_end" |