scan for Linux Xen /dev/xvd? device

This commit is contained in:
Christophe Grenier 2014-08-09 09:57:52 +02:00
parent 6c65c05bcf
commit 1643d9e65b

View file

@ -369,6 +369,8 @@ list_disk_t *hd_parse(list_disk_t *list_disk, const int verbose, const int testd
list_disk=hd_glob_parse("/dev/sr?", list_disk, verbose, testdisk_mode);
/* Software (ATA)Raid configured (disk level) via dmraid */
list_disk=hd_glob_parse("/dev/dm-*", list_disk, verbose, testdisk_mode);
/* Xen virtual disks */
list_disk=hd_glob_parse("/dev/xvd?", list_disk, verbose, testdisk_mode);
#endif
}
#elif defined(TARGET_SOLARIS)