source: udev/60-persistent-disk.rules@ 81a04c4

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 81a04c4 was 95756c0, checked in by Jim Gifford <clfs@…>, 17 years ago

Updates with Upstream

  • Property mode set to 100644
File size: 4.5 KB
RevLine 
[7e161ea]1########################################################################
2#
[26b1cc1]3# Description : 60-persistent-disk.rules
[7e161ea]4#
5# Authors : Based on Open Suse Udev Rules
6# kay.sievers@suse.de and hare@suse.de
7#
8# Adapted to : Jim Gifford
9# LFS
10#
11# Version : 00.01
12#
13# Notes :
14#
15########################################################################
16
[95756c0]17# persistent storage links: /dev/{disk,tape}/{by-id,by-uuid,by-label,by-path,by-name}
[7e161ea]18# scheme based on "Linux persistent device names", 2004, Hannes Reinecke <hare@suse.de>
19
[95756c0]20ACTION!="add", GOTO="persistent_storage_end"
[5b4b253]21
22KERNEL=="nst[0-9]", SUBSYSTEMS=="scsi", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -x -s %p -d $tempnode"
23KERNEL=="nst[0-9]", SUBSYSTEMS=="scsi", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -x -a -s %p -d $tempnode"
24KERNEL=="nst[0-9]", SUBSYSTEMS=="scsi", ENV{ID_SERIAL}=="?*", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}-nst"
25
26# type 8 devices are "Medium Changers"
27KERNEL=="sg*", SUBSYSTEMS=="scsi", ATTRS{type}=="8", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -x -s %p -d $tempnode"
28KERNEL=="sg*", SUBSYSTEMS=="scsi", ATTRS{type}=="8", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -x -a -s %p -d $tempnode"
29KERNEL=="sg*", SUBSYSTEMS=="scsi", ATTRS{type}=="8", ENV{ID_SERIAL}=="?*", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}"
30
[95756c0]31SUBSYSTEM!="block", GOTO="persistent_storage_end"
[7e161ea]32
33# skip rules for inappropriate block devices
[90d6419]34KERNEL=="ram*|loop*|fd*|nbd*|gnbd*|dm-*|md*", GOTO="persistent_storage_end"
[bda8cfb]35
[95756c0]36# never access non-cdrom removable ide devices, the drivers are causing event loops on open()
37KERNEL=="hd*[!0-9]", ATTRS{removable}=="1", DRIVERS=="ide-cs|ide-floppy", GOTO="persistent_storage_end"
38KERNEL=="hd*[0-9]", ATTRS{removable}=="1", GOTO="persistent_storage_end"
[7e161ea]39
[95756c0]40# ignore partitions that span the entire disk
41ATTR{whole_disk}=="", GOTO="persistent_storage_end"
[1400499]42
43# for partitions import parent information
[95756c0]44KERNEL=="*[0-9]", IMPORT{parent}="ID_*"
[7e161ea]45
46# by-id (hardware serial number)
[95756c0]47KERNEL=="hd*[!0-9]", IMPORT{program}="ata_id --export $tempnode"
48KERNEL=="hd*[!0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}"
49KERNEL=="hd*[0-9]", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}-part%n"
[5b4b253]50
51KERNEL=="sd*[!0-9]|sr*|st*", ATTRS{ieee1394_id}=="?*", ENV{ID_SERIAL}="$attr{ieee1394_id}", ENV{ID_BUS}="ieee1394"
52KERNEL=="sd*[!0-9]|sr*|st*", ENV{ID_SERIAL}=="", IMPORT{program}="usb_id -x"
53KERNEL=="sd*[!0-9]|sr*|st*", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -x -s %p -d $tempnode"
[95756c0]54KERNEL=="sd*[!0-9]|sr*|st*", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -x -a -s %p -d $tempnode"
[5b4b253]55KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}"
[95756c0]56KERNEL=="sd*[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}-part%n"
[2b92d03]57
58# libata compat (links like hd*)
[95756c0]59KERNEL=="sd*[!0-9]|sr*", ENV{ID_VENDOR}=="ATA", PROGRAM="ata_id $tempnode", ENV{ID_ATA_COMPAT}="$result"
60KERNEL=="sd*[!0-9]|sr*", ENV{ID_ATA_COMPAT}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_ATA_COMPAT}"
61KERNEL=="sd*[0-9]", ENV{ID_ATA_COMPAT}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_ATA_COMPAT}-part%n"
[5b4b253]62
[95756c0]63KERNEL=="mmcblk[0-9]", 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}"
64KERNEL=="mmcblk[0-9]p[0-9]", 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}-part%n"
[7e161ea]65
66# by-path (shortest physical path)
[1400499]67KERNEL=="*[!0-9]|sr*", IMPORT{program}="path_id %p", SYMLINK+="disk/by-path/$env{ID_PATH}"
68KERNEL=="st*", IMPORT{program}="path_id %p", SYMLINK+="tape/by-path/$env{ID_PATH}"
69KERNEL=="sr*|st*", GOTO="persistent_storage_end"
70KERNEL=="*[0-9]", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}-part%n"
[7e161ea]71
72# by-label/by-uuid (filesystem properties)
[95756c0]73KERNEL=="*[!0-9]", ATTRS{removable}=="1", GOTO="persistent_storage_end"
[dfdebf6]74IMPORT{program}="vol_id --export $tempnode"
[95756c0]75ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID_ENC}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID_ENC}"
76ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_ENC}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_ENC}"
[7e161ea]77
78# BIOS Enhanced Disk Device
[95756c0]79KERNEL=="*[!0-9]", IMPORT{program}="edd_id --export $tempnode"
80KERNEL=="*[!0-9]", ENV{ID_EDD}=="?*", SYMLINK+="disk/by-id/edd-$env{ID_EDD}"
81KERNEL=="*[0-9]", ENV{ID_EDD}=="?*", SYMLINK+="disk/by-id/edd-$env{ID_EDD}-part%n"
[7e161ea]82
[bda8cfb]83LABEL="persistent_storage_end"
Note: See TracBrowser for help on using the repository browser.