Magellan Linux

Diff of /tags/udev-162-r2/udev-cdrom_id.rules.magellan

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

revision 516 by niro, Sat Mar 22 18:13:36 2008 UTC revision 1088 by niro, Wed Aug 18 02:24:13 2010 UTC
# Line 1  Line 1 
1  # /etc/udev/rules/60-cdrom_id.rules:  device naming rules for udev  # /etc/udev/rules/60-cdrom_id.rules:  device naming rules for udev
2  # $Header: /root/magellan-cvs/src/udev/udev-cdrom_id.rules.magellan,v 1.1 2008-03-22 18:13:36 niro Exp $  # $Header: /root/magellan-cvs/src/udev/udev-cdrom_id.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  KERNEL=="sr[0-9]*|hd[a-z]|pcd[0-9]*", IMPORT{program}="cdrom_id --export $tempnode"  ACTION=="remove", GOTO="cdrom_end"
22    SUBSYSTEM!="block", GOTO="cdrom_end"
23    KERNEL!="sr[0-9]*|xvd*", GOTO="cdrom_end"
24    ENV{DEVTYPE}!="disk", GOTO="cdrom_end"
25    
26    KERNEL=="sr[0-9]*", ENV{ID_CDROM}="1"
27    IMPORT{program}="cdrom_id --export $tempnode"
28    
29    LABEL="cdrom_end"

Legend:
Removed from v.516  
changed lines
  Added in v.1088