Magellan Linux

Diff of /trunk/udev/udev-persistent-storage.rules.magellan

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

revision 514 by niro, Fri Aug 17 20:08:47 2007 UTC revision 515 by niro, Sat Mar 22 18:12:38 2008 UTC
# Line 1  Line 1 
1  # /etc/udev/rules/65-persistent-storage.rules:  device naming rules for udev  # /etc/udev/rules/65-persistent-storage.rules:  device naming rules for udev
2  # $Header: /root/magellan-cvs/src/udev/udev-persistent-storage.rules.magellan,v 1.3 2007-08-17 20:08:47 niro Exp $  # $Header: /root/magellan-cvs/src/udev/udev-persistent-storage.rules.magellan,v 1.4 2008-03-22 18:12:22 niro Exp $
3    #
4    # There are a number of modifiers that are allowed to be used in some
5    # of the different fields. They provide the following subsitutions:
6    # %n - the "kernel number" of the device.
7    #      For example, 'sda3' has a "kernel number" of '3'
8    # %k - the kernel name for the device.
9    # %M - the kernel major number for the device
10    # %m - the kernel minor number for the device
11    # %b - the bus id for the device
12    # %c - the string returned by the PROGRAM. (Note, this doesn't work within
13    #      the PROGRAM field for the obvious reason.)
14    # %s{filename} - the content of a sysfs attribute.
15    # %% - the '%' char itself.
16    #
17    # Try not to modify this file, if you wish to change things, create a new rule
18    # file that can be run before this one.
19    #
20    
21  # persistent storage links: /dev/{disk,tape}/{by-id,by-uuid,by-label,by-path,by-name}  # persistent storage links: /dev/disk/{by-id,by-uuid,by-label,by-path}
22  # scheme based on "Linux persistent device names", 2004, Hannes Reinecke <hare@suse.de>  # scheme based on "Linux persistent device names", 2004, Hannes Reinecke <hare@suse.de>
23    
24  ACTION!="add", GOTO="persistent_storage_end"  ACTION!="add|change", GOTO="persistent_storage_end"
   
 KERNEL=="nst[0-9]", SUBSYSTEMS=="scsi", IMPORT{program}="scsi_id --export --whitelisted --fallback-to-sysfs -s %p -d $tempnode", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}-nst"  
   
 # type 8 devices are "Medium Changers"  
 KERNEL=="sg*", SUBSYSTEMS=="scsi", ATTRS{type}=="8", IMPORT{program}="scsi_id --export --whitelisted --fallback-to-sysfs -s %p -d $tempnode", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}"  
   
25  SUBSYSTEM!="block", GOTO="persistent_storage_end"  SUBSYSTEM!="block", GOTO="persistent_storage_end"
26    
27  # skip rules for inappropriate block devices  # skip rules for inappropriate block devices
# Line 35  KERNEL=="hd*[!0-9]", IMPORT{program}="at Line 46  KERNEL=="hd*[!0-9]", IMPORT{program}="at
46  KERNEL=="hd*[!0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}"  KERNEL=="hd*[!0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}"
47  KERNEL=="hd*[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}-part%n"  KERNEL=="hd*[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}-part%n"
48    
49  KERNEL=="sd*[!0-9]|sr*|st*", ATTRS{ieee1394_id}=="?*", ENV{ID_SERIAL}="$attr{ieee1394_id}", ENV{ID_BUS}="ieee1394"  KERNEL=="sd*[!0-9]|sr*", ATTRS{ieee1394_id}=="?*", ENV{ID_SERIAL}="$attr{ieee1394_id}", ENV{ID_BUS}="ieee1394"
50  KERNEL=="sd*[!0-9]|sr*|st*", ENV{ID_SERIAL}!="?*", IMPORT{program}="usb_id --export %p"  KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}!="?*", SUBSYSTEMS=="usb", IMPORT{program}="usb_id --export %p"
51  KERNEL=="sd*[!0-9]|sr*|st*", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id --export --whitelisted --fallback-to-sysfs -s %p -d $tempnode"  KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id --export --whitelisted --fallback-to-sysfs -s %p -d $tempnode"
52  KERNEL=="cciss?c[0-9]d[0-9]", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id --export --whitelisted --ignore-sysfs -s %p -d $tempnode", ENV{ID_BUS}="cciss"  KERNEL=="cciss?c[0-9]d[0-9]", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id --export --whitelisted --ignore-sysfs -s %p -d $tempnode", ENV{ID_BUS}="cciss"
53  KERNEL=="sd*[!0-9]|sr*|cciss?c[0-9]d[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}"  KERNEL=="sd*[!0-9]|sr*|cciss?c[0-9]d[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}"
54  KERNEL=="sd*[0-9]|cciss*p[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}-part%n"  KERNEL=="sd*[0-9]|cciss*p[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}-part%n"
 KERNEL=="st*", ENV{ID_SERIAL}=="?*", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}"  
55    
56  # libata compat (links like hd*)  # libata compat (links like hd*)
57  KERNEL=="sd*[!0-9]|sr*", ENV{ID_VENDOR}=="ATA", PROGRAM="ata_id $tempnode", RESULT=="?*", ENV{ID_ATA_COMPAT}="$result", SYMLINK+="disk/by-id/ata-$env{ID_ATA_COMPAT}"  KERNEL=="sd*[!0-9]|sr*", ENV{ID_VENDOR}=="ATA", PROGRAM="ata_id $tempnode", RESULT=="?*", ENV{ID_ATA_COMPAT}="$result", SYMLINK+="disk/by-id/ata-$env{ID_ATA_COMPAT}"
# Line 54  KERNEL=="mmcblk[0-9]p[0-9]", ENV{ID_NAME Line 64  KERNEL=="mmcblk[0-9]p[0-9]", ENV{ID_NAME
64  ENV{DEVTYPE}=="disk", IMPORT{program}="path_id %p"  ENV{DEVTYPE}=="disk", IMPORT{program}="path_id %p"
65  ENV{DEVTYPE}=="disk", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}"  ENV{DEVTYPE}=="disk", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}"
66  ENV{DEVTYPE}=="partition", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}-part%n"  ENV{DEVTYPE}=="partition", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}-part%n"
 KERNEL=="st*", ENV{ID_PATH}=="?*", SYMLINK+="tape/by-path/$env{ID_PATH}"  
67    
68  KERNEL=="sr*|st*", GOTO="persistent_storage_end"  KERNEL=="sr*", GOTO="persistent_storage_end"
69  KERNEL=="hd*[!0-9]", ATTR{removable}=="1", GOTO="persistent_storage_end"  KERNEL=="hd*[!0-9]", ATTR{removable}=="1", GOTO="persistent_storage_end"
70    
71  # by-label/by-uuid (filesystem properties)  # by-label/by-uuid (filesystem properties)
72  IMPORT{program}="vol_id --export $tempnode"  ENV{DEVTYPE}=="partition", IMPORT{program}="vol_id --export $tempnode"
73  ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID_ENC}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID_ENC}"  ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID_ENC}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID_ENC}"
74  ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_ENC}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_ENC}"  ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_ENC}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_ENC}"
75    
 # BIOS Enhanced Disk Device  
 ENV{DEVTYPE}=="disk", IMPORT{program}="edd_id --export $tempnode"  
 ENV{DEVTYPE}=="disk", ENV{ID_EDD}=="?*", SYMLINK+="disk/by-id/edd-$env{ID_EDD}"  
 ENV{DEVTYPE}=="partition", ENV{ID_EDD}=="?*", SYMLINK+="disk/by-id/edd-$env{ID_EDD}-part%n"  
   
76  LABEL="persistent_storage_end"  LABEL="persistent_storage_end"

Legend:
Removed from v.514  
changed lines
  Added in v.515