Magellan Linux

Contents of /tags/udev-166-r2/udev-acl.rules.magellan

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1726 - (show annotations) (download)
Tue Apr 3 13:54:48 2012 UTC (12 years ago) by niro
File size: 3237 byte(s)
tagged 'udev-166-r2'
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
43 # sound devices
44 SUBSYSTEM=="sound", TAG+="udev-acl"
45
46 # ffado is an userspace driver for firewire sound cards
47 SUBSYSTEM=="firewire", ENV{ID_FFADO}=="1", TAG+="udev-acl"
48
49 # webcams, frame grabber, TV cards
50 SUBSYSTEM=="video4linux", TAG+="udev-acl"
51 SUBSYSTEM=="dvb", TAG+="udev-acl"
52
53 # IIDC devices: industrial cameras and some webcams
54 SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x00010*", TAG+="udev-acl"
55 SUBSYSTEM=="firewire", ATTR{units}=="*0x00b09d:0x00010*", TAG+="udev-acl"
56 # AV/C devices: camcorders, set-top boxes, TV sets, audio devices, and more
57 SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x010001*", TAG+="udev-acl"
58 SUBSYSTEM=="firewire", ATTR{units}=="*0x00a02d:0x014001*", TAG+="udev-acl"
59
60 # DRI video devices
61 SUBSYSTEM=="drm", KERNEL=="card*", TAG+="udev-acl"
62
63 # KVM
64 SUBSYSTEM=="misc", KERNEL=="kvm", TAG+="udev-acl"
65
66 # smart-card readers
67 ENV{ID_SMARTCARD_READER}=="*?", TAG+="udev-acl"
68
69 # PDA devices
70 ENV{ID_PDA}=="*?", TAG+="udev-acl"
71
72 # joysticks
73 SUBSYSTEM=="input", ENV{ID_INPUT_JOYSTICK}=="?*", TAG+="udev-acl"
74
75 # color measurement devices
76 ENV{COLOR_MEASUREMENT_DEVICE}=="*?", TAG+="udev-acl"
77
78 # DDC/CI device, usually high-end monitors such as the DreamColor
79 ENV{DDC_DEVICE}=="*?", TAG+="udev-acl"
80
81 # media player raw devices (for user-mode drivers, Android SDK, etc.)
82 SUBSYSTEM=="usb", ENV{ID_MEDIA_PLAYER}=="?*", TAG+="udev-acl"
83
84 # apply ACL for all locally logged in users
85 LABEL="acl_apply", TAG=="udev-acl", TEST=="/var/run/ConsoleKit/database", \
86 RUN+="udev-acl --action=$env{ACTION} --device=$env{DEVNAME}"
87
88 LABEL="acl_end"