Magellan Linux

Diff of /tags/udev-162-r2/udev-drivers.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 1124 by niro, Mon Sep 13 14:05:04 2010 UTC
# Line 1  Line 1 
1  # /etc/udev/rules/80-drivers.rules:  device naming rules for udev  # /etc/udev/rules/80-drivers.rules:  device naming rules for udev
2  # $Header: /root/magellan-cvs/src/udev/udev-drivers.rules.magellan,v 1.2 2008-12-22 20:31:37 niro Exp $  # $Header: /root/magellan-cvs/src/udev/udev-drivers.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", GOTO="drivers_end"  ACTION=="remove", GOTO="drivers_end"
22    
23  DRIVER!="?*", ENV{MODALIAS}=="?*", RUN{ignore_error}+="modprobe.sh $env{MODALIAS}"  DRIVER!="?*", ENV{MODALIAS}=="?*", RUN+="modprobe.sh -bv $env{MODALIAS}"
24  SUBSYSTEM=="tifm", RUN+="modprobe.sh --all tifm_sd tifm_ms"  SUBSYSTEM=="tifm", ENV{TIFM_CARD_TYPE}=="SD", RUN+="modprobe.sh -bv tifm_sd"
25  SUBSYSTEM=="memstick", RUN+="modprobe.sh --all ms_block mspro_block"  SUBSYSTEM=="tifm", ENV{TIFM_CARD_TYPE}=="MS", RUN+="modprobe.sh -bv tifm_ms"
26  SUBSYSTEM=="mmc", RUN+="modprobe.sh mmc_block"  SUBSYSTEM=="memstick", RUN+="modprobe.sh -bv --all ms_block mspro_block"
27  SUBSYSTEM=="i2o", RUN+="modprobe.sh i2o_block"  SUBSYSTEM=="i2o", RUN+="modprobe.sh -bv i2o_block"
28  SUBSYSTEM=="ide", ATTR{media}=="tape", RUN+="modprobe.sh ide-scsi"  SUBSYSTEM=="scsi", ENV{DEVTYPE}=="scsi_device", TEST!="[module/sg]", RUN+="modprobe.sh -bv sg"
29  SUBSYSTEM=="scsi", ENV{DEVTYPE}=="scsi_device", TEST!="[module/sg]", RUN+="modprobe.sh sg"  SUBSYSTEM=="module", KERNEL=="parport_pc", RUN+="modprobe.sh -bv ppdev"
 SUBSYSTEM=="module", KERNEL=="parport_pc", RUN+="modprobe.sh ppdev"  
30    
31  LABEL="drivers_end"  LABEL="drivers_end"

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