Magellan Linux

Contents of /tags/udev-171-r1/udev-acl.rules.magellan

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1329 - (show annotations) (download)
Fri May 27 13:54:05 2011 UTC (12 years, 10 months ago) by niro
File size: 3396 byte(s)
tagged 'udev-171-r1'
1 # /etc/udev/rules/70-acl.rules: device naming rules for udev
2 # $Header: /root/magellan-cvs/src/udev/udev-acl.rules.magellan,v 1.3 2010-08-18 02:24:12 niro Exp $
3 #
4 # There are a number of modifiers that are allowed to be used in some
5 # of the different fields. They provide the following subsitutions:
6 # %n - the "kernel number" of the device.
7 # For example, 'sda3' has a "kernel number" of '3'
8 # %k - the kernel name for the device.
9 # %M - the kernel major number for the device
10 # %m - the kernel minor number for the device
11 # %b - the bus id for the device
12 # %c - the string returned by the PROGRAM. (Note, this doesn't work within
13 # the PROGRAM field for the obvious reason.)
14 # %s{filename} - the content of a sysfs attribute.
15 # %% - the '%' char itself.
16 #
17 # Try not to modify this file, if you wish to change things, create a new rule
18 # file that can be run before this one.
19 #
20
21 # Do not use TAG+="udev-acl" outside of this file. This variable is private to
22 # udev-acl of this udev release and may be replaced at any time.
23
24 ENV{MAJOR}=="", GOTO="acl_end"
25 ACTION=="remove", GOTO="acl_apply"
26
27 # PTP/MTP protocol devices, cameras, portable media players
28 SUBSYSTEM=="usb", ENV{ID_USB_INTERFACES}=="", ENV{DEVTYPE}=="usb_device", IMPORT{program}="usb_id --export %p"
29 SUBSYSTEM=="usb", ENV{ID_USB_INTERFACES}=="*:060101:*", TAG+="udev-acl"
30
31 # digicams with proprietary protocol
32 ENV{ID_GPHOTO2}=="*?", TAG+="udev-acl"
33
34 # SCSI and USB scanners
35 ENV{libsane_matched}=="yes", TAG+="udev-acl"
36
37 # HPLIP devices (necessary for ink level check and HP tool maintenance)
38 ENV{ID_HPLIP}=="1", TAG+="udev-acl"
39
40 # optical drives
41 SUBSYSTEM=="block", ENV{ID_CDROM}=="1", TAG+="udev-acl"
42 SUBSYSTEM=="scsi_generic", SUBSYSTEMS=="scsi", ATTRS{type}=="4|5", TAG+="udev-acl"
43
44 # sound devices
45 SUBSYSTEM=="sound", TAG+="udev-acl"
46
47 # ffado is an userspace driver for firewire sound cards
48 SUBSYSTEM=="firewire", ENV{ID_FFADO}=="1", TAG+="udev-acl"
49
50 # webcams, frame grabber, TV cards
51 SUBSYSTEM=="video4linux", TAG+="udev-acl"
52 SUBSYSTEM=="dvb", TAG+="udev-acl"
53
54 # IIDC devices: industrial cameras and some webcams
55 SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x00010*", TAG+="udev-acl"
56 SUBSYSTEM=="firewire", ATTR{units}=="*0x00b09d:0x00010*", TAG+="udev-acl"
57 # AV/C devices: camcorders, set-top boxes, TV sets, audio devices, and more
58 SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x010001*", TAG+="udev-acl"
59 SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x014001*", TAG+="udev-acl"
60
61 # DRI video devices
62 SUBSYSTEM=="drm", KERNEL=="card*", TAG+="udev-acl"
63
64 # KVM
65 SUBSYSTEM=="misc", KERNEL=="kvm", TAG+="udev-acl"
66
67 # smart-card readers
68 ENV{ID_SMARTCARD_READER}=="*?", TAG+="udev-acl"
69
70 # PDA devices
71 ENV{ID_PDA}=="*?", TAG+="udev-acl"
72
73 # Programmable remote control
74 ENV{ID_REMOTE_CONTROL}=="1", TAG+="udev-acl"
75
76 # joysticks
77 SUBSYSTEM=="input", ENV{ID_INPUT_JOYSTICK}=="?*", TAG+="udev-acl"
78
79 # color measurement devices
80 ENV{COLOR_MEASUREMENT_DEVICE}=="*?", TAG+="udev-acl"
81
82 # DDC/CI device, usually high-end monitors such as the DreamColor
83 ENV{DDC_DEVICE}=="*?", TAG+="udev-acl"
84
85 # media player raw devices (for user-mode drivers, Android SDK, etc.)
86 SUBSYSTEM=="usb", ENV{ID_MEDIA_PLAYER}=="?*", TAG+="udev-acl"
87
88 # apply ACL for all locally logged in users
89 LABEL="acl_apply", TAG=="udev-acl", TEST=="/var/run/ConsoleKit/database", \
90 RUN+="udev-acl --action=$env{ACTION} --device=$env{DEVNAME}"
91
92 LABEL="acl_end"