Magellan Linux

Diff of /trunk/udev/udev-kernel-compat.rules.magellan

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 717 by niro, Mon Dec 22 20:31:37 2008 UTC revision 1324 by niro, Thu May 26 22:42:57 2011 UTC
# Line 1  Line 1 
1  # /etc/udev/rules/30-kernel-compat.rules:  kernel compat rules for udev  # /etc/udev/rules/30-kernel-compat.rules:  kernel compat rules for udev
2  # $Header: /root/magellan-cvs/src/udev/udev-kernel-compat.rules.magellan,v 1.2 2008-12-22 20:31:37 niro Exp $  # $Header: /root/magellan-cvs/src/udev/udev-kernel-compat.rules.magellan,v 1.5 2010-08-18 02:24:12 niro Exp $
3  #  #
4  # There are a number of modifiers that are allowed to be used in some  # There are a number of modifiers that are allowed to be used in some
5  # of the different fields. They provide the following subsitutions:  # of the different fields. They provide the following subsitutions:
# Line 18  Line 18 
18  # file that can be run before this one.  # file that can be run before this one.
19  #  #
20    
21  ACTION!="add|change", GOTO="kernel_compat_end"  # Rules to support older kernels, which migth miss functionality needed
22    # for the recent udev rules.
 #  
 # rules to workaround bad sysfs timing  
 #  
   
 ACTION!="add", GOTO="kernel_compat_wait_end"  
   
 # workarounds needed to synchronize with sysfs  
 # needed for kernels < v2.6.18-rc1  
 DEVPATH=="/devices/*", ENV{PHYSDEVBUS}=="?*", WAIT_FOR_SYSFS="bus"  
 SUBSYSTEM=="scsi", KERNEL=="[0-9]*:[0-9]*",    WAIT_FOR_SYSFS="ioerr_cnt"  
   
 # needed for kernels <2.6.16  
 SUBSYSTEM=="net", WAIT_FOR_SYSFS="address"  
   
 # needed for kernels <2.6.17  
 SUBSYSTEM=="net", ENV{PHYSDEVDRIVER}=="?*", WAIT_FOR_SYSFS="device/driver"  
   
 LABEL="kernel_compat_wait_end"  
   
 #  
 # naming device rules  
 #  
   
 # old style usb sysfs devices  
 # needed for kernels <2.6.22  
 SUBSYSTEM=="usb_device", PROGRAM="/bin/sh -c 'K=%k; K=$${K#usbdev}; printf bus/usb/%%03i/%%03i $${K%%%%.*} $${K#*.}'", NAME="%c", GROUP="usb", MODE="0664"  
   
 # /sys/class/block will export this  
 # needed for kernels <2.6.25-rc1  
 SUBSYSTEM!="block", GOTO="block_devtype_end"  
 ENV{DEVTYPE}!="?*", ATTR{range}=="?*", ENV{DEVTYPE}="disk"  
 ENV{DEVTYPE}!="?*", ATTR{start}=="?*", ENV{DEVTYPE}="partition"  
 LABEL="block_devtype_end"  
   
   
 #  
 # module loading rules  
23  #  #
24  ACTION!="add", GOTO="kernel_compat_end"  ACTION!="add", GOTO="kernel_compat_end"
25    
26  # this driver is broken and should not be loaded automatically  # see extras/qemu/42-qemu-usb.rules, version for 2.6.32 + older.
27  # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=398962  ACTION=="add", SUBSYSTEM=="usb", ATTR{product}=="QEMU USB Mouse", ATTR{serial}=="42", TEST=="power/level", ATTR{power/level}="auto"
28  # needed for kernels <2.6.21  ACTION=="add", SUBSYSTEM=="usb", ATTR{product}=="QEMU USB Tablet", ATTR{serial}=="42", TEST=="power/level", ATTR{power/level}="auto"
29  SUBSYSTEM=="platform", ENV{MODALIAS}=="i82365", ENV{MODALIAS}=""  ACTION=="add", SUBSYSTEM=="usb", ATTR{product}=="QEMU USB Keyboard", ATTR{serial}=="42", TEST=="power/level", ATTR{power/level}="auto"
   
 # No need for more code, as MODALIAS is present  
 ENV{MODALIAS}=="?*", GOTO="kernel_compat_end"  
   
 # 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)'"  
   
 # needed for kernels <2.6.22  
 SUBSYSTEM!="scsi_device", GOTO="kernel_compat_end"  
   
  # Parts taken from redhat-rules  
  # sd:           0 TYPE_DISK, 7 TYPE_MOD, 14 TYPE_RBC  
  # sr:           4 TYPE_WORM, 5 TYPE_ROM  
  # st/osst:      1 TYPE_TAPE  
   
  ATTRS{type}=="0|7|14", RUN+="modprobe.sh sd_mod"  
  ATTRS{type}=="4|5", RUN+="modprobe.sh sr_mod"  
  ATTRS{type}=="8", RUN+="modprobe.sh ch"  
   
  ATTRS{type}=="1", ATTRS{vendor}=="On[sS]tream", \  
  ATTRS{model}!="ADR*", RUN+="modprobe.sh osst", GOTO="kernel_compat_end"  
  ATTRS{type}=="1", RUN+="modprobe.sh st"  
30    
31  LABEL="kernel_compat_end"  LABEL="kernel_compat_end"

Legend:
Removed from v.717  
changed lines
  Added in v.1324