chiark / gitweb /
Prep v230: No longer print double messages when shutting down or rebooting.
[elogind.git] / src / login / 70-uaccess.rules
1 #  This file is part of systemd.
2 #
3 #  systemd is free software; you can redistribute it and/or modify it
4 #  under the terms of the GNU Lesser General Public License as published by
5 #  the Free Software Foundation; either version 2.1 of the License, or
6 #  (at your option) any later version.
7
8 ACTION=="remove", GOTO="uaccess_end"
9 ENV{MAJOR}=="", GOTO="uaccess_end"
10
11 # PTP/MTP protocol devices, cameras, portable media players
12 SUBSYSTEM=="usb", ENV{ID_USB_INTERFACES}=="*:060101:*", TAG+="uaccess"
13
14 # Digicams with proprietary protocol
15 ENV{ID_GPHOTO2}=="?*", TAG+="uaccess"
16
17 # SCSI and USB scanners
18 ENV{libsane_matched}=="yes", TAG+="uaccess"
19
20 # HPLIP devices (necessary for ink level check and HP tool maintenance)
21 ENV{ID_HPLIP}=="1", TAG+="uaccess"
22
23 # optical drives
24 SUBSYSTEM=="block", ENV{ID_CDROM}=="1", TAG+="uaccess"
25 SUBSYSTEM=="scsi_generic", SUBSYSTEMS=="scsi", ATTRS{type}=="4|5", TAG+="uaccess"
26
27 # Sound devices
28 SUBSYSTEM=="sound", TAG+="uaccess" \
29   OPTIONS+="static_node=snd/timer", OPTIONS+="static_node=snd/seq"
30
31 # ffado is an userspace driver for firewire sound cards
32 SUBSYSTEM=="firewire", ENV{ID_FFADO}=="1", TAG+="uaccess"
33
34 # Webcams, frame grabber, TV cards
35 SUBSYSTEM=="video4linux", TAG+="uaccess"
36 SUBSYSTEM=="dvb", TAG+="uaccess"
37
38 # IIDC devices: industrial cameras and some webcams
39 SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x00010*",  TAG+="uaccess"
40 SUBSYSTEM=="firewire", ATTR{units}=="*0x00b09d:0x00010*",  TAG+="uaccess"
41 # AV/C devices: camcorders, set-top boxes, TV sets, audio devices, and more
42 SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x010001*", TAG+="uaccess"
43 SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x014001*", TAG+="uaccess"
44
45 # DRI and frame buffer video devices
46 SUBSYSTEM=="drm", KERNEL=="card*|renderD*", TAG+="uaccess"
47 SUBSYSTEM=="graphics", KERNEL=="fb*", TAG+="uaccess"
48
49 # KVM
50 SUBSYSTEM=="misc", KERNEL=="kvm", TAG+="uaccess"
51
52 # smart-card readers
53 ENV{ID_SMARTCARD_READER}=="?*", TAG+="uaccess"
54
55 # (USB) authentication devices
56 ENV{ID_SECURITY_TOKEN}=="?*", TAG+="uaccess"
57
58 # PDA devices
59 ENV{ID_PDA}=="?*", TAG+="uaccess"
60
61 # Programmable remote control
62 ENV{ID_REMOTE_CONTROL}=="1", TAG+="uaccess"
63
64 # joysticks
65 SUBSYSTEM=="input", ENV{ID_INPUT_JOYSTICK}=="?*", TAG+="uaccess"
66
67 # color measurement devices
68 ENV{COLOR_MEASUREMENT_DEVICE}=="?*", TAG+="uaccess"
69
70 # DDC/CI device, usually high-end monitors such as the DreamColor
71 ENV{DDC_DEVICE}=="?*", TAG+="uaccess"
72
73 # media player raw devices (for user-mode drivers, Android SDK, etc.)
74 SUBSYSTEM=="usb", ENV{ID_MEDIA_PLAYER}=="?*", TAG+="uaccess"
75
76 # software-defined radio communication devices
77 ENV{ID_SOFTWARE_RADIO}=="?*", TAG+="uaccess"
78
79 # 3D printers, CNC machines, laser cutters, 3D scanners, etc.
80 ENV{ID_MAKER_TOOL}=="?*", TAG+="uaccess"
81
82 LABEL="uaccess_end"