blob: 45ffeeac6ba17b211a5c16145fa18ec4ad762130 (
plain)
1
2
3
4
5
6
7
|
# grouping of optical drives from multiple kernel subsystems
BUS=="scsi", KERNEL=="sr[0-9]*", SYMLINK+="cdrom%e"
BUS=="ide", KERNEL=="hd[a-z]", SYSFS{removable}=="1", \
PROGRAM="/bin/cat /proc/ide/%k/media", RESULT=="cdrom", \
SYMLINK+="cdrom%e"
BUS=="ide", KERNEL=="pcd[0-9]*", SYSFS{removable}=="1", SYMLINK+="cdrom%e"
|