]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/login/70-uaccess.rules
relicense to LGPLv2.1 (with exceptions)
[thirdparty/systemd.git] / src / login / 70-uaccess.rules
CommitLineData
3f49d45a
LP
1# This file is part of systemd.
2#
3# systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
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
3f49d45a
LP
6# (at your option) any later version.
7
8ACTION=="remove", GOTO="uaccess_end"
9ENV{MAJOR}=="", GOTO="uaccess_end"
10
11# PTP/MTP protocol devices, cameras, portable media players
83cd6b75 12SUBSYSTEM=="usb", ENV{ID_USB_INTERFACES}=="", ENV{DEVTYPE}=="usb_device", IMPORT{builtin}="usb_id"
3f49d45a
LP
13SUBSYSTEM=="usb", ENV{ID_USB_INTERFACES}=="*:060101:*", TAG+="uaccess"
14
15# Digicams with proprietary protocol
16ENV{ID_GPHOTO2}=="*?", TAG+="uaccess"
17
18# SCSI and USB scanners
19ENV{libsane_matched}=="yes", TAG+="uaccess"
20
21# HPLIP devices (necessary for ink level check and HP tool maintenance)
22ENV{ID_HPLIP}=="1", TAG+="uaccess"
23
24# optical drives
25SUBSYSTEM=="block", ENV{ID_CDROM}=="1", TAG+="uaccess"
26SUBSYSTEM=="scsi_generic", SUBSYSTEMS=="scsi", ATTRS{type}=="4|5", TAG+="uaccess"
27
28# Sound devices
29SUBSYSTEM=="sound", TAG+="uaccess"
30
31# ffado is an userspace driver for firewire sound cards
32SUBSYSTEM=="firewire", ENV{ID_FFADO}=="1", TAG+="uaccess"
33
34# Webcams, frame grabber, TV cards
35SUBSYSTEM=="video4linux", TAG+="uaccess"
36SUBSYSTEM=="dvb", TAG+="uaccess"
37
38# IIDC devices: industrial cameras and some webcams
39SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x00010*", TAG+="uaccess"
40SUBSYSTEM=="firewire", ATTR{units}=="*0x00b09d:0x00010*", TAG+="uaccess"
41# AV/C devices: camcorders, set-top boxes, TV sets, audio devices, and more
42SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x010001*", TAG+="uaccess"
43SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x014001*", TAG+="uaccess"
44
45# DRI video devices
46SUBSYSTEM=="drm", KERNEL=="card*", TAG+="uaccess"
47
48# KVM
49SUBSYSTEM=="misc", KERNEL=="kvm", TAG+="uaccess"
50
51# smart-card readers
52ENV{ID_SMARTCARD_READER}=="*?", TAG+="uaccess"
53
54# PDA devices
55ENV{ID_PDA}=="*?", TAG+="uaccess"
56
57# Programmable remote control
58ENV{ID_REMOTE_CONTROL}=="1", TAG+="uaccess"
59
60# joysticks
61SUBSYSTEM=="input", ENV{ID_INPUT_JOYSTICK}=="?*", TAG+="uaccess"
62
63# color measurement devices
64ENV{COLOR_MEASUREMENT_DEVICE}=="*?", TAG+="uaccess"
65
66# DDC/CI device, usually high-end monitors such as the DreamColor
67ENV{DDC_DEVICE}=="*?", TAG+="uaccess"
68
69# media player raw devices (for user-mode drivers, Android SDK, etc.)
70SUBSYSTEM=="usb", ENV{ID_MEDIA_PLAYER}=="?*", TAG+="uaccess"
71
72LABEL="uaccess_end"