# There are a number of modifiers that are allowed to be used in some # of the different fields. They provide the following subsitutions: # %n - the "kernel number" of the device. # For example, 'sda3' has a "kernel number" of '3' # %k - the kernel name for the device. # %M - the kernel major number for the device # %m - the kernel minor number for the device # %b - the bus id for the device # %c - the string returned by the PROGRAM. (Note, this doesn't work within # the PROGRAM field for the obvious reason.) # %% - the '%' char itself. # # IDE block devices BUS="ide", KERNEL="hd*", PROGRAM="/etc/udev/ide-devfs.sh %k %b %n", NAME="%1c", SYMLINK="%k %2c" # SCSI block devices BUS="scsi", KERNEL="sd[a-z][0-9]*", PROGRAM="/etc/udev/scsi-devfs.sh %k %b %n", NAME="%1c", SYMLINK="%k %2c" BUS="scsi", KERNEL="sd[a-i][a-z][0-9]*", PROGRAM="/etc/udev/scsi-devfs.sh %k %b %n", NAME="%1c", SYMLINK="%k %2c" BUS="scsi", KERNEL="s[grt][0-9]*", PROGRAM="/etc/udev/scsi-devfs.sh %k %b %n", NAME="%1c", SYMLINK="%k %2c" BUS="scsi", KERNEL="scd[0-9]*", PROGRAM="/etc/udev/scsi-devfs.sh %k %b %n", NAME="%1c", SYMLINK="%k %2c" BUS="scsi", KERNEL="st[0-9]*", PROGRAM="/etc/udev/scsi-devfs.sh %k %b %n", NAME="%1c", SYMLINK="%k %2c" BUS="scsi", KERNEL="nst[0-9]*", PROGRAM="/etc/udev/scsi-devfs.sh %k %b %n", NAME="%1c", SYMLINK="%k %2c" # block devices KERNEL="md[0-9]*", NAME="md/%n", SYMLINK="%k" KERNEL="loop[0-9]*", NAME="loop/%n" #, SYMLINK="%k" # tty devices KERNEL="tty[0-9]*", NAME="vc/%n" KERNEL="ttyS[0-9]*", NAME="tts/%n" KERNEL="ttyUSB[0-9]*", NAME="tts/USB%n" # vc devices KERNEL="vcs", NAME="vcc/0" KERNEL="vcs[0-9]*", NAME="vcc/%n" KERNEL="vcsa", NAME="vcc/a0" KERNEL="vcsa[0-9]*", NAME="vcc/a%n" # v4l devices KERNEL="video0", NAME="v4l/video%n", SYMLINK="video" KERNEL="video[0-9]*", NAME="v4l/video%n" KERNEL="radio0", NAME="v4l/radio%n", SYMLINK="radio" KERNEL="radio[0-9]*", NAME="v4l/radio%n" KERNEL="vbi0", NAME="v4l/vbi%n", SYMLINK="vbi" KERNEL="vbi[0-9]*", NAME="v4l/vbi%n" KERNEL="vtx0", NAME="v4l/vtx%n", SYMLINK="vtx" KERNEL="vtx[0-9]*", NAME="v4l/vtx%n" # misc devices KERNEL="apm_bios", NAME="misc/apm_bios", SYMLINK="apm_bios" KERNEL="agpgart", NAME="misc/agpgart", SYMLINK="agpgart" KERNEL="psaux", NAME="misc/psaux" #, SYMLINK="psaux" KERNEL="rtc", NAME="misc/rtc", SYMLINK="rtc" KERNEL="card[0-9]*", NAME="dri/card%n" KERNEL="i2c-[0-9]*", NAME="i2c/%n" KERNEL="ram[0-9]*", NAME="rd/%n" #, SYMLINK="%k" KERNEL="lp[0-9]*", NAME="printers/%n" # sound devices KERNEL="controlC[0-9]*", NAME="snd/%k" KERNEL="hw[CD0-9]*", NAME="snd/%k" KERNEL="pcm[CD0-9cp]*", NAME="snd/%k" KERNEL="midi[CD0-9]*", NAME="snd/%k" KERNEL="timer", NAME="snd/%k" KERNEL="seq", NAME="snd/%k" KERNEL="audio*", NAME="sound/%k" KERNEL="dsp*", NAME="sound/%k" KERNEL="adsp*", NAME="sound/%k" KERNEL="midi*", NAME="sound/%k" KERNEL="mixer*", NAME="sound/%k" KERNEL="sequencer*", NAME="sound/%k" KERNEL="amidi*", NAME="sound/%k" KERNEL="dmmidi*", NAME="sound/%k" KERNEL="admmidi*", NAME="sound/%k" # input devices KERNEL="mice", NAME="input/%k" KERNEL="mouse*", NAME="input/%k" KERNEL="event*", NAME="input/%k" KERNEL="js*", NAME="input/%k" KERNEL="ts*", NAME="input/%k" # device mapper creates its own device nodes so ignore these KERNEL="dm-[0-9]*", NAME=""