summaryrefslogtreecommitdiffstats
path: root/udev/69-glucometerutils.rules
blob: 1ef2f58b89efec90b414a0d9a9aac497d77b0dad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# udev rules for glucometer devices using usb/tty/hid interfaces
# SPDX-FileCopyrightText: © 2017 The glucometerutils Authors
# SPDX-License-Identifier: MIT

# Installation:
# - Copy this file to /etc/udev/rules.d/
# - Run the command:
#       udevadm control --reload && udevadm trigger

ACTION!="add|change", GOTO="glucometerutils_rules_end"
SUBSYSTEM!="usb|tty|hidraw", GOTO="glucometerutils_rules_end"


# LifeScan devices

# LifeScan OneTouch Ultra 2
# LifeScan OneTouch Ultra Easy
ATTRS{idVendor}=="067b", ATTRS{idProduct}=="2303", TAG+="uaccess"


# SD Biosensor SD CodeFree devices

# SD CodeFree
ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", TAG+="uaccess"


# Abbott Freestyle devices

ATTRS{idVendor}=="1a61", TAG+="uaccess"


LABEL="glucometerutils_rules_end"