chiark / gitweb /
6182f502bfc8ae774c2eaf007817164695c558ad
[elogind.git] / etc / udev / udev.rules.devfs
1 # There are a number of modifiers that are allowed to be used in some of the
2 # fields.  See the udev man page for a full description of them.
3
4 # ide block devices
5 BUS="ide", id="0.0", NAME="ide/host0/bus0/target0/lun0/%D"
6 BUS="ide", id="0.1", NAME="ide/host0/bus0/target1/lun0/%D"
7 BUS="ide", id="1.0", NAME="ide/host0/bus1/target0/lun0/%D"
8 BUS="ide", id="1.1", NAME="ide/host0/bus1/target1/lun0/%D"
9
10 # md block devices
11 KERNEL="md[0-9]*", NAME="md/%n"
12
13 # tty devices
14 KERNEL="tty[0-9]*", NAME="vc/%n"
15 KERNEL="ttyS[0-9]*", NAME="tts/%n"
16 KERNEL="ttyUSB[0-9]*", NAME="tts/USB%n"
17
18 # vc devices
19 KERNEL="vcs",        NAME="vcc/0"
20 KERNEL="vcs[0-9]*",  NAME="vcc/%n"
21 KERNEL="vcsa",       NAME="vcc/a0"
22 KERNEL="vcsa[0-9]*", NAME="vcc/a%n"
23
24 # v4l devices
25 KERNEL="video[0-9]*", NAME="v4l/video%n"
26 KERNEL="radio[0-9]*", NAME="v4l/radio%n"
27 KERNEL="vbi[0-9]*",   NAME="v4l/vbi%n"
28 KERNEL="vtx[0-9]*",   NAME="v4l/vtx%n"
29
30 # dm devices (ignore them)
31 KERNEL="dm-[0-9]*", NAME=""
32
33 # i2c devices
34 KERNEL="i2c-[0-9]*", NAME="i2c/%n", SYMLINK="%k"
35
36 # loop devices
37 KERNEL="loop[0-9]*", NAME="loop/%n", SYMLINK="%k"
38
39 # ramdisks
40 KERNEL="ram[0-9]*", NAME="rd/%n", SYMLINK="%k"
41
42 # framebuffer devices
43 KERNEL="fb[0-9]*", NAME="fb/%n", SYMLINK="%k"
44
45 # misc
46 KERNEL="rtc",   NAME="misc/%k", SYMLINK="%k"
47 KERNEL="psaux", NAME="misc/%k", SYMLINK="%k"
48
49 # alsa devices
50 KERNEL="controlC[0-9]*", NAME="snd/%k"
51 KERNEL="hw[CD0-9]*",     NAME="snd/%k"
52 KERNEL="pcm[CD0-9cp]*",  NAME="snd/%k"
53 KERNEL="midi[CD0-9]*",   NAME="snd/%k"
54 KERNEL="timer",          NAME="snd/%k"
55 KERNEL="seq",            NAME="snd/%k"
56
57 # input devices
58 KERNEL="mice",          NAME="input/%k"
59 KERNEL="mouse*",        NAME="input/%k"
60 KERNEL="event*",        NAME="input/%k"
61 KERNEL="js*",           NAME="input/%k"
62 KERNEL="ts*",           NAME="input/%k"
63