chiark / gitweb /
[PATCH] clean up the gentoo rules file a bit more, adding dri rules.
[elogind.git] / etc / udev / udev.rules.gentoo
1 # /etc/udev/udev.rules:  device naming rules for udev
2 #
3 # Gentoo specific rules, based a bit on devfs rules, but much simpler.
4 #
5 # There are a number of modifiers that are allowed to be used in some of the
6 # fields.  See the udev man page for a full description of them.
7
8
9 ###########################################################
10 #
11 # For devfs similar /dev layout (neater)
12 #
13 ###########################################################
14
15 # devfs-names for ide-devices (uncomment only one)
16 #  /dev/ide/.../{disc,cd} and /dev/{cdroms,discs}/* type names
17 BUS="ide", KERNEL="hd*", PROGRAM="/etc/udev/scripts/ide-devfs.sh %k %b %n", NAME="%k", SYMLINK="%c{1} %c{2}"
18
19 # DRI devices
20 KERNEL="card*", NAME="dri/card%n"
21
22 # alsa devices
23 KERNEL="controlC[0-9]*", NAME="snd/%k"
24 KERNEL="hw[CD0-9]*",     NAME="snd/%k"
25 KERNEL="pcm[CD0-9cp]*",  NAME="snd/%k"
26 KERNEL="midiC[D0-9]*",   NAME="snd/%k"
27 KERNEL="timer",          NAME="snd/%k"
28 KERNEL="seq",            NAME="snd/%k"
29
30 # dm devices (ignore them)
31 KERNEL="dm-[0-9]*",     NAME=""
32 # create a symlink named after the device map name
33 # note devmap_name comes with extras/multipath
34 #KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"
35 KERNEL="device-mapper", NAME="mapper/control"
36
37 # fb devices
38 KERNEL="fb[0-9]*", NAME="fb/%n", SYMLINK="%k"
39
40 # floppy devices
41 KERNEL="fd[0-9]*", NAME="floppy/%n", SYMLINK="%k"
42
43 # i2c devices
44 KERNEL="i2c-[0-9]*", NAME="i2c/%n", SYMLINK="%k"
45
46 # input devices
47 KERNEL="mice",          NAME="input/%k"
48 KERNEL="mouse*",        NAME="input/%k"
49 KERNEL="event*",        NAME="input/%k"
50 KERNEL="js*",           NAME="input/%k"
51 KERNEL="ts*",           NAME="input/%k"
52
53 # loop devices
54 KERNEL="loop[0-9]*", NAME="loop/%n", SYMLINK="%k"
55
56 # md block devices
57 KERNEL="md[0-9]*", NAME="md/%n", SYMLINK="%k"
58
59 # misc devices
60 KERNEL="rtc",     NAME="misc/%k", SYMLINK="%k"
61 KERNEL="psaux",   NAME="misc/%k", SYMLINK="%k"
62 KERNEL="agpgart", NAME="misc/%k", SYMLINK="%k"
63 KERNEL="rtc",     NAME="misc/%k", SYMLINK="%k"
64 KERNEL="psaux",   NAME="misc/%k", SYMLINK="%k"
65 KERNEL="uinput",  NAME="misc/%k", SYMLINK="%k"
66
67 # pty devices
68 KERNEL="pty[p-za-e][0-9a-f]*", NAME="pty/m%n", SYMLINK="%k"
69 KERNEL="tty[p-za-e][0-9a-f]*", NAME="tty/s%n", SYMLINK="%k"
70
71 # ramdisk devices
72 KERNEL="ram[0-9]*", NAME="rd/%n", SYMLINK="%k"
73
74 # sound devices
75 KERNEL="adsp",            NAME="sound/%k", SYMLINK="%k"
76 KERNEL="adsp[0-9]*",      NAME="sound/%k", SYMLINK="%k"
77 KERNEL="audio",           NAME="sound/%k", SYMLINK="%k"
78 KERNEL="audio[0-9]*",     NAME="sound/%k", SYMLINK="%k"
79 KERNEL="dsp",             NAME="sound/%k", SYMLINK="%k"
80 KERNEL="dsp[0-9]*",       NAME="sound/%k", SYMLINK="%k"
81 KERNEL="mixer",           NAME="sound/%k", SYMLINK="%k"
82 KERNEL="mixer[0-9]*",     NAME="sound/%k", SYMLINK="%k"
83 KERNEL="sequencer",       NAME="sound/%k", SYMLINK="%k"
84 KERNEL="sequencer[0-9]*", NAME="sound/%k", SYMLINK="%k"
85
86 # tty devices
87 KERNEL="tty[0-9]*",    NAME="vc/%n",  SYMLINK="%k"
88 KERNEL="ttyS[0-9]*",   NAME="tts/%n", SYMLINK="%k"
89 KERNEL="ttyUSB[0-9]*", NAME="tts/USB%n"
90
91 # vc devices
92 KERNEL="vcs",        NAME="vcc/0",   SYMLINK="%k"
93 KERNEL="vcs[0-9]*",  NAME="vcc/%n",  SYMLINK="%k"
94 KERNEL="vcsa",       NAME="vcc/a0",  SYMLINK="%k"
95 KERNEL="vcsa[0-9]*", NAME="vcc/a%n", SYMLINK="%k"
96
97 # v4l devices
98 KERNEL="video[0-9]*", NAME="v4l/video%n"
99 KERNEL="radio[0-9]*", NAME="v4l/radio%n"
100 KERNEL="vbi[0-9]*",   NAME="v4l/vbi%n"
101 KERNEL="vtx[0-9]*",   NAME="v4l/vtx%n"
102