chiark / gitweb /
update Debian rules
[elogind.git] / etc / udev / debian / udev.rules
1 # There are a number of modifiers that are allowed to be used in some
2 # of the different fields. They provide the following subsitutions:
3 #
4 # %n the "kernel number" of the device.
5 #    For example, 'sda3' has a "kernel number" of '3'
6 # %k the kernel name for the device
7 # %M the kernel major number for the device
8 # %m the kernel minor number for the device
9 # %b the bus id for the device
10 # %c the string returned by the PROGRAM
11 # %s{filename} the content of a sysfs attribute
12 # %% the '%' char itself
13 #
14
15 # workaround for devices which do not report media changes
16 SUBSYSTEMS=="ide", KERNEL=="hd[a-z]", ATTRS{removable}=="1", \
17         ENV{ID_MODEL}=="IOMEGA_ZIP*",   NAME="%k", OPTIONS+="all_partitions"
18 SUBSYSTEMS=="ide", KERNEL=="hd[a-z]", ATTRS{media}=="floppy", \
19         OPTIONS+="all_partitions"
20
21 # SCSI devices
22 SUBSYSTEMS=="scsi", KERNEL=="sr[0-9]*", NAME="scd%n", SYMLINK+="sr%n"
23
24 # USB devices
25 SUBSYSTEMS=="usb", KERNEL=="auer[0-9]*",        NAME="usb/%k"
26 SUBSYSTEMS=="usb", KERNEL=="cpad[0-9]*",        NAME="usb/%k"
27 SUBSYSTEMS=="usb", KERNEL=="dabusb*",           NAME="usb/%k"
28 SUBSYSTEMS=="usb", KERNEL=="hiddev*",           NAME="usb/%k"
29 SUBSYSTEMS=="usb", KERNEL=="legousbtower*",     NAME="usb/%k"
30 SUBSYSTEMS=="usb", KERNEL=="lp[0-9]*",          NAME="usb/%k"
31 SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", \
32         ATTRS{product}=="Palm Handheld*|Handspring Visor|palmOne Handheld", \
33                                         SYMLINK+="pilot"
34
35 # usbfs-like devices
36 SUBSYSTEM=="usb_device",        PROGRAM="/bin/sh -c 'K=%k; K=$${K#usbdev}; printf bus/usb/%%03i/%%03i $${K%%%%.*} $${K#*.}'", \
37                                 NAME="%c"
38
39 # serial devices
40 KERNEL=="capi",                 NAME="capi20", SYMLINK+="isdn/capi20"
41 KERNEL=="capi[0-9]*",           NAME="capi/%n"
42
43 # video devices
44 KERNEL=="dvb*",                 PROGRAM="/bin/sh -c 'K=%k; K=$${K#dvb}; printf dvb/adapter%%i/%%s $${K%%%%.*} $${K#*.}", \
45                                 NAME="%c"
46 KERNEL=="card[0-9]*",           NAME="dri/%k"
47
48 # misc devices
49 KERNEL=="hw_random",            NAME="hwrng"
50 KERNEL=="tun",                  NAME="net/%k"
51 KERNEL=="evtchn",               NAME="xen/%k"
52
53 KERNEL=="cdemu[0-9]*",          NAME="cdemu/%n"
54 KERNEL=="pktcdvd[0-9]*",        NAME="pktcdvd/%n"
55 KERNEL=="pktcdvd",              NAME="pktcdvd/control"
56
57 KERNEL=="cpu[0-9]*",            NAME="cpu/%n/cpuid"
58 KERNEL=="msr[0-9]*",            NAME="cpu/%n/msr"
59 KERNEL=="microcode",            NAME="cpu/microcode"
60
61 KERNEL=="umad*",                NAME="infiniband/%k"
62 KERNEL=="issm*",                NAME="infiniband/%k"
63 KERNEL=="uverbs*",              NAME="infiniband/%k"
64 KERNEL=="ucm*",                 NAME="infiniband/%k"
65
66 # ALSA devices
67 KERNEL=="controlC[0-9]*",       NAME="snd/%k"
68 KERNEL=="hwC[D0-9]*",           NAME="snd/%k"
69 KERNEL=="pcmC[D0-9cp]*",        NAME="snd/%k"
70 KERNEL=="midiC[D0-9]*",         NAME="snd/%k"
71 KERNEL=="timer",                NAME="snd/%k"
72 KERNEL=="seq",                  NAME="snd/%k"
73
74 # ieee1394 devices       
75 KERNEL=="dv1394*",              NAME="dv1394/%n"
76 KERNEL=="video1394*",           NAME="video1394/%n"
77
78 # input devices
79 KERNEL=="mice",                 NAME="input/%k"
80 KERNEL=="mouse[0-9]*",          NAME="input/%k"
81 KERNEL=="event[0-9]*",          NAME="input/%k"
82 KERNEL=="js[0-9]*",             NAME="input/%k"
83 KERNEL=="ts[0-9]*",             NAME="input/%k"
84 KERNEL=="uinput",               NAME="input/%k"
85
86 # Zaptel
87 KERNEL=="zapctl",               NAME="zap/ctl"
88 KERNEL=="zaptimer",             NAME="zap/timer"
89 KERNEL=="zapchannel",           NAME="zap/channel"
90 KERNEL=="zappseudo",            NAME="zap/pseudo"
91 KERNEL=="zap[0-9]*",            NAME="zap/%n"
92
93 # AOE character devices
94 SUBSYSTEM=="aoe", KERNEL=="discover",   NAME="etherd/%k"
95 SUBSYSTEM=="aoe", KERNEL=="err",        NAME="etherd/%k"
96 SUBSYSTEM=="aoe", KERNEL=="interfaces", NAME="etherd/%k"
97 SUBSYSTEM=="aoe", KERNEL=="revalidate", NAME="etherd/%k"
98
99 # device mapper creates its own device nodes, so ignore these
100 KERNEL=="dm-[0-9]*",            NAME=""
101 KERNEL=="device-mapper",        NAME="mapper/control"
102