cdrom_id: add Xen cdrom support

This commit is contained in:
Kay Sievers 2009-04-17 00:29:56 +02:00
parent 09b2999210
commit 55d8f5e208
2 changed files with 6 additions and 6 deletions

View file

@ -1,3 +1,5 @@
# import optical drive properties
# do not edit this file, it will be overwritten on update
ACTION=="add|change", KERNEL=="sr[0-9]*|hd[a-z]|pcd[0-9]*", IMPORT{program}="cdrom_id --export $tempnode"
# import optical drive properties
ACTION=="add|change", SUBSYSTEM=="block", ENV{DEVTYPE}=="disk", \
KERNEL=="sr[0-9]*|hd[a-z]|pcd[0-9]|xvd*", IMPORT{program}="cdrom_id --export $tempnode"

View file

@ -567,10 +567,8 @@ int main(int argc, char *argv[])
}
/* check drive */
if (cd_inquiry(udev, fd) < 0) {
rc = 2;
goto exit;
}
if (cd_inquiry(udev, fd) < 0)
goto print;
/* read drive and possibly current profile */
if (cd_profiles(udev, fd) < 0)