# /etc/udev/rules/30-kernel-compat.rules: kernel compat rules for udev # $Header: /root/magellan-cvs/src/udev/udev-kernel-compat.rules.magellan,v 1.5 2010-08-18 02:24:12 niro Exp $ # # 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.) # %s{filename} - the content of a sysfs attribute. # %% - the '%' char itself. # # Try not to modify this file, if you wish to change things, create a new rule # file that can be run before this one. # ACTION=="remove", GOTO="kernel_compat_end" # # sysfs timing rules # # needed for kernels <2.6.30 SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", WAIT_FOR="descriptors" # # naming device rules # # dvb device naming # needed for kernels <2.6.29-rc1 SUBSYSTEM=="dvb", ENV{DVB_ADAPTER_NUM}=="", PROGRAM="/bin/sh -c 'K=%k; K=$${K#dvb}; printf dvb/adapter%%i/%%s $${K%%%%.*} $${K#*.}'", NAME="%c", GROUP="video" # naming rules for kernels <2.6.31 # alsa names KERNEL=="controlC[0-9]*", NAME="snd/%k" KERNEL=="hwC[D0-9]*", NAME="snd/%k" KERNEL=="pcmC[D0-9cp]*", NAME="snd/%k" KERNEL=="midiC[D0-9]*", NAME="snd/%k" KERNEL=="timer", NAME="snd/%k" KERNEL=="seq", NAME="snd/%k" KERNEL=="mwave", NAME="modems/mwave" KERNEL=="mouse*|mice|event*", NAME="input/%k" KERNEL=="ts[0-9]*|uinput", NAME="input/%k" KERNEL=="js[0-9]*", NAME="input/%k" KERNEL=="card[0-9]*", NAME="dri/%k" SUBSYSTEM=="dvb", ENV{DVB_ADAPTER_NUM}=="?*", NAME="dvb/adapter$env{DVB_ADAPTER_NUM}/$env{DVB_DEVICE_TYPE}$env{DVB_DEVICE_NUM}" # libusb device nodes SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", NAME="bus/usb/$env{BUSNUM}/$env{DEVNUM}" # printer SUBSYSTEM=="usb", KERNEL=="lp*", NAME="usb/%k" # block KERNEL=="pktcdvd[0-9]*", NAME="pktcdvd/%k" KERNEL=="pktcdvd", NAME="pktcdvd/control" KERNEL=="rawctl", NAME="raw/rawctl" SUBSYSTEM=="raw", KERNEL=="raw[0-9]*", NAME="raw/%k" SUBSYSTEM=="bsg", NAME="bsg/%k" SUBSYSTEM=="aoe", NAME="etherd/%k" # network KERNEL=="tun", NAME="net/%k" # CPU KERNEL=="cpu[0-9]*", NAME="cpu/%n/cpuid" KERNEL=="msr[0-9]*", NAME="cpu/%n/msr" KERNEL=="microcode", NAME="cpu/microcode", MODE="0600" # miscellaneous KERNEL=="auer[0-9]*", NAME="usb/%k" KERNEL=="hw_random", NAME="hwrng" KERNEL=="sxctl", NAME="specialix_sxctl" KERNEL=="rioctl", NAME="specialix_rioctl" KERNEL=="iowarrior[0-9]*", NAME="usb/%k" KERNEL=="hiddev[0-9]*", NAME="usb/%k" KERNEL=="legousbtower[0-9]*", NAME="usb/%k" KERNEL=="dabusb[0-9]*", NAME="usb/%k" KERNEL=="usbdpfp[0-9]*", NAME="usb/%k" KERNEL=="cpad[0-9]*", NAME="usb/%k" # end of naming rules for kernel <2.6.31 # # module loading rules # ACTION!="add", GOTO="kernel_compat_end" # No need for more code, as MODALIAS is present ENV{MODALIAS}=="?*", GOTO="kernel_compat_end" # needed for kernel <2.6.30-rc1 SUBSYSTEM=="scsi", ATTR{type}=="8", RUN+="/sbin/modprobe -b ch" SUBSYSTEM=="mmc", RUN+="modprobe.sh -b mmc_block" # needed for kernel <2.6.27-rc5 # acpi will do on newer kernels SUBSYSTEM=="pnp", DRIVER!="?*", \ RUN{ignore_error}+="/bin/sh -c 'modprobe.sh -a $$(while read id; do echo pnp:d$$id; done < /sys$devpath/id)'" LABEL="kernel_compat_end"