chiark / gitweb /
[PATCH] udev - CALLOUT is PROGRAM now
[elogind.git] / etc / udev / udev.rules.devfs
1 # These rules are to try to emulate a devfs naming scheme in udev
2 # if there are any missing rules, please let the udev developers
3 # know.
4 #
5 # There are a number of modifiers that are allowed to be used in the
6 # a number of the different fields. They provide the following subsitutions:
7 # %n - the "kernel number" of the device.
8 #      for example, 'sda3' has a "kernel number" of '3'
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 return value of the external PROGRAM (note, this doesn't work within
13 #      the PROGRAM field for the obvious reason.)
14 # %D - use the devfs style disk name for this device.
15 #      For partitions, this will result in 'part%n'
16 #      If this is not a partition, it will result in 'disc'
17 #
18
19 # ide block devices
20 BUS="ide", id="0.0", NAME="ide/host0/bus0/target0/lun0/%D"
21 BUS="ide", id="0.1", NAME="ide/host0/bus0/target1/lun0/%D"
22 BUS="ide", id="1.0", NAME="ide/host0/bus1/target0/lun0/%D"
23 BUS="ide", id="1.1", NAME="ide/host0/bus1/target1/lun0/%D"
24
25 # md block devices
26 KERNEL="md[0-9]*", NAME="md/%n"
27
28 # tty devices
29 KERNEL="tty[0-9]*", NAME="vc/%n"
30 KERNEL="ttyS[0-9]*", NAME="tts/%n"
31 KERNEL="ttyUSB[0-9]*", NAME="tts/USB%n"
32
33 # vc devices
34 KERNEL="vcs",        NAME="vcc/0"
35 KERNEL="vcs[0-9]*",  NAME="vcc/%n"
36 KERNEL="vcsa",       NAME="vcc/a0"
37 KERNEL="vcsa[0-9]*", NAME="vcc/a%n"
38
39 # v4l devices
40 KERNEL="video[0-9]*", NAME="v4l/video%n"
41 KERNEL="radio[0-9]*", NAME="v4l/radio%n"
42 KERNEL="vbi[0-9]*",   NAME="v4l/vbi%n"
43 KERNEL="vtx[0-9]*",   NAME="v4l/vtx%n"
44
45 # dm devices (ignore them)
46 KERNEL="dm-[0-9]*", NAME=""
47
48 # i2c devices
49 KERNEL="i2c-[0-9]*", NAME="i2c/%n", SYMLINK="%k"
50
51 # loop devices
52 KERNEL="loop[0-9]*", NAME="loop/%n", SYMLINK="%k"
53
54 # ramdisks
55 KERNEL="ram[0-9]*", NAME="rd/%n", SYMLINK="%k"
56
57 # framebuffer devices
58 KERNEL="fb[0-9]*", NAME="fb/%n", SYMLINK="%k"
59
60 # misc
61 KERNEL="rtc",   NAME="misc/%k", SYMLINK="%k"
62 KERNEL="psaux", NAME="misc/%k", SYMLINK="%k"
63
64 # alsa devices
65 KERNEL="controlC[0-9]*", NAME="snd/%k"
66 KERNEL="hw[CD0-9]*",     NAME="snd/%k"
67 KERNEL="pcm[CD0-9cp]*",  NAME="snd/%k"
68 KERNEL="midi[CD0-9]*",   NAME="snd/%k"
69 KERNEL="timer",          NAME="snd/%k"
70 KERNEL="seq",            NAME="snd/%k"
71