2007-07-31 15:14:04 +04:00
# do not edit this file, it will be overwritten on update
2007-09-25 14:20:17 +04:00
# persistent storage links: /dev/disk/{by-id,by-uuid,by-label,by-path}
2005-09-18 06:41:09 +04:00
# scheme based on "Linux persistent device names", 2004, Hannes Reinecke <hare@suse.de>
2008-04-20 23:15:00 +04:00
# forward scsi device event to corresponding block device
ACTION=="change", SUBSYSTEM=="scsi", ENV{DEVTYPE}=="scsi_device", TEST=="block", ATTR{block/*/uevent}="change"
2008-03-15 01:18:19 +03:00
ACTION!="add|change", GOTO="persistent_storage_end"
2006-03-21 18:20:54 +03:00
SUBSYSTEM!="block", GOTO="persistent_storage_end"
2005-09-18 06:41:09 +04:00
# skip rules for inappropriate block devices
2008-11-25 19:25:14 +03:00
KERNEL=="ram*|loop*|fd*|nbd*|gnbd*|dm-*|md*|btibm*", GOTO="persistent_storage_end"
2005-09-18 06:41:09 +04:00
2006-09-07 13:30:29 +04:00
# never access non-cdrom removable ide devices, the drivers are causing event loops on open()
2006-11-14 19:38:42 +03:00
KERNEL=="hd*[!0-9]", ATTR{removable}=="1", DRIVERS=="ide-cs|ide-floppy", GOTO="persistent_storage_end"
2006-09-07 13:30:29 +04:00
KERNEL=="hd*[0-9]", ATTRS{removable}=="1", GOTO="persistent_storage_end"
2006-03-22 21:16:26 +03:00
2007-05-16 22:15:21 +04:00
# ignore partitions that span the entire disk
2008-04-03 23:05:19 +04:00
TEST=="whole_disk", GOTO="persistent_storage_end"
2007-06-21 04:15:17 +04:00
2006-03-22 21:16:26 +03:00
# for partitions import parent information
2007-06-21 04:15:17 +04:00
ENV{DEVTYPE}=="partition", 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"
2006-09-07 13:30:29 +04:00
KERNEL=="hd*[!0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}"
2007-06-21 04:15:17 +04:00
KERNEL=="hd*[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}-part%n"
2005-09-18 06:41:09 +04:00
2007-09-25 14:20:17 +04:00
KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}!="?*", SUBSYSTEMS=="usb", IMPORT{program}="usb_id --export %p"
2008-05-14 17:14:23 +04:00
KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id --export --whitelisted -d $tempnode", ENV{ID_BUS}="scsi"
2008-11-28 03:18:48 +03:00
KERNEL=="cciss*", ENV{DEVTYPE}=="disk", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id --export --whitelisted -d $tempnode", ENV{ID_BUS}="cciss"
KERNEL=="sd*|sr*|cciss*", ENV{DEVTYPE}=="disk", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}"
KERNEL=="sd*|cciss*", ENV{DEVTYPE}=="partition", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}-part%n"
2005-09-18 06:41:09 +04:00
2008-10-01 16:42:58 +04:00
# firewire
KERNEL=="sd*[!0-9]|sr*", ATTRS{ieee1394_id}=="?*", SYMLINK+="disk/by-id/ieee1394-$attr{ieee1394_id}"
KERNEL=="sd*[0-9]", ATTRS{ieee1394_id}=="?*", SYMLINK+="disk/by-id/ieee1394-$attr{ieee1394_id}-part%n"
2008-08-22 12:11:34 +04:00
# libata compat (ata-* links, like old hd* devices did create)
2007-06-21 04:15:17 +04:00
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}"
2007-04-06 21:53:20 +04:00
KERNEL=="sd*[0-9]", ENV{ID_ATA_COMPAT}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_ATA_COMPAT}-part%n"
2007-06-21 04:15:17 +04:00
KERNEL=="mmcblk[0-9]", SUBSYSTEMS=="mmc", ATTRS{name}=="?*", ATTRS{serial}=="?*", ENV{ID_NAME}="$attr{name}", ENV{ID_SERIAL}="$attr{serial}", SYMLINK+="disk/by-id/mmc-$env{ID_NAME}_$env{ID_SERIAL}"
KERNEL=="mmcblk[0-9]p[0-9]", ENV{ID_NAME}=="?*", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/mmc-$env{ID_NAME}_$env{ID_SERIAL}-part%n"
2008-11-19 13:24:03 +03:00
KERNEL=="mspblk[0-9]", SUBSYSTEMS=="memstick", ATTRS{name}=="?*", ATTRS{serial}=="?*", ENV{ID_NAME}="$attr{name}", ENV{ID_SERIAL}="$attr{serial}", SYMLINK+="disk/by-id/memstick-$env{ID_NAME}_$env{ID_SERIAL}"
KERNEL=="mspblk[0-9]p[0-9]", ENV{ID_NAME}=="?*", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/memstick-$env{ID_NAME}_$env{ID_SERIAL}-part%n"
2008-07-11 11:53:33 +04:00
# by-path (parent device path)
2007-06-21 04:15:17 +04:00
ENV{DEVTYPE}=="disk", IMPORT{program}="path_id %p"
ENV{DEVTYPE}=="disk", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}"
ENV{DEVTYPE}=="partition", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}-part%n"
2008-04-20 23:15:00 +04:00
# skip unpartitioned removable media devices from drivers which do not send "change" events
ENV{DEVTYPE}=="disk", KERNEL!="sd*|sr*", ATTR{removable}=="1", GOTO="persistent_storage_end"
2008-08-22 12:11:34 +04:00
# probe filesystem metadata of optical drives which have a media inserted
KERNEL=="sr*", ENV{ID_CDROM_MEDIA_TRACK_COUNT}=="?*", IMPORT{program}="vol_id --export --skip-raid --offset=$env{ID_CDROM_MEDIA_SESSION_LAST_OFFSET} $tempnode"
# probe filesystem metadata of disks
KERNEL!="sr*", IMPORT{program}="vol_id --export $tempnode"
2008-04-20 23:15:00 +04:00
# by-label/by-uuid links (filesystem metadata)
2007-05-17 22:19:25 +04:00
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", ENV{ID_FS_LABEL_ENC}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_ENC}"
2005-09-18 06:41:09 +04:00
2006-03-21 18:20:54 +03:00
LABEL="persistent_storage_end"