2006-03-21 18:20:54 +03:00
# persistent storage links: /dev/{disk,tape}/{by-id,by-uuid,by-label,by-path,by-name}
2005-09-18 06:41:09 +04:00
# scheme based on "Linux persistent device names", 2004, Hannes Reinecke <hare@suse.de>
2006-03-21 18:20:54 +03:00
ACTION!="add", GOTO="persistent_storage_end"
SUBSYSTEM!="block", GOTO="persistent_storage_end"
2005-09-18 06:41:09 +04:00
# skip rules for inappropriate block devices
2006-03-21 18:20:54 +03:00
KERNEL=="ram*|loop*|fd*|nbd*", GOTO="persistent_storage_end"
2005-09-18 06:41:09 +04:00
# never access removable ide devices, the drivers are causing event loops on open()
2006-03-22 21:16:26 +03:00
KERNEL=="hd*[!0-9]", SYSFS{removable}=="1", DRIVER=="ide-cs|ide-floppy", GOTO="persistent_storage_end"
KERNEL=="hd*[0-9]", SYSFS{../removable}=="1", GOTO="persistent_storage_end"
# for partitions import parent information
KERNEL=="*[0-9]", IMPORT{parent}=="ID_*"
2005-09-18 06:41:09 +04:00
# by-id (hardware serial number)
2006-03-29 16:44:41 +04:00
KERNEL=="hd*[!0-9]", IMPORT{program}="ata_id --export $tempnode"
2005-09-18 06:41:09 +04:00
KERNEL=="hd*[!0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}"
KERNEL=="hd*[0-9]", IMPORT{parent}=="ID_*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}-part%n"
2006-03-21 18:10:18 +03:00
KERNEL=="sd*[!0-9]|sr*|st*", SYSFS{ieee1394_id}=="*", ENV{ID_SERIAL}="$sysfs{ieee1394_id}", ENV{ID_BUS}="ieee1394"
2006-03-29 16:44:41 +04:00
KERNEL=="sd*[!0-9]|sr*|st*", ENV{ID_SERIAL}=="", IMPORT{program}="usb_id -x"
KERNEL=="sd*[!0-9]|sr*|st*", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -x -s %p -d $tempnode"
KERNEL=="sd*[!0-9]|sr*|st*", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -x -a -s %p -d $tempnode"
KERNEL=="dasd*[!0-9]", IMPORT{program}="dasd_id --export $tempnode"
2005-09-18 06:41:09 +04:00
KERNEL=="sd*[!0-9]|sr*|dasd*[!0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}"
KERNEL=="sd*[0-9]|dasd*[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}-part%n"
2006-03-22 21:16:26 +03:00
KERNEL=="st*", ENV{ID_SERIAL}=="?*", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}"
2005-09-18 06:41:09 +04:00
# by-path (shortest physical path)
2006-03-29 16:44:41 +04:00
KERNEL=="*[!0-9]|sr*", IMPORT{program}="path_id %p", SYMLINK+="disk/by-path/$env{ID_PATH}"
KERNEL=="st*", IMPORT{program}="path_id %p", SYMLINK+="tape/by-path/$env{ID_PATH}"
2006-03-22 21:16:26 +03:00
KERNEL=="sr*|st*", GOTO="persistent_storage_end"
2006-03-23 12:57:05 +03:00
KERNEL=="*[0-9]", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}-part%n"
2006-03-22 21:16:26 +03:00
# by-label/by-uuid (filesystem properties)
2006-03-23 12:57:05 +03:00
KERNEL=="*[!0-9]", SYSFS{removable}=="1", GOTO="persistent_storage_end"
2006-03-29 16:44:41 +04:00
IMPORT{program}="vol_id --export $tempnode"
2006-03-22 21:46:33 +03:00
ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_UUID}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID}"
ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_SAFE}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_SAFE}"
2005-09-18 06:41:09 +04:00
# BIOS Enhanced Disk Device
2006-03-29 16:44:41 +04:00
KERNEL=="*[!0-9]", IMPORT{program}="edd_id --export $tempnode"
2005-09-27 18:38:43 +04:00
KERNEL=="*[!0-9]", ENV{ID_EDD}=="?*", SYMLINK+="disk/by-id/edd-$env{ID_EDD}"
KERNEL=="*[0-9]", ENV{ID_EDD}=="?*", SYMLINK+="disk/by-id/edd-$env{ID_EDD}-part%n"
2005-09-18 06:41:09 +04:00
2006-04-22 19:28:50 +04:00
KERNEL=="dm-[0-9]*", ACTION=="add", PROGRAM="/sbin/dmsetup info -c --noopencount --noheadings -o name -j %M -m %m", SYMLINK+="disk/by-name/%c"
2005-09-18 06:41:09 +04:00
2006-03-21 18:20:54 +03:00
LABEL="persistent_storage_end"