* util/hostdisk.c (convert_system_partition_to_system_disk):

Handle virtual disk devices named /dev/vdiskX as found on sparc
	and powerpc.
This commit is contained in:
davem 2009-04-30 13:21:14 +00:00
parent ac8a2baae4
commit 6966215ddb
2 changed files with 11 additions and 0 deletions

View file

@ -767,6 +767,13 @@ convert_system_partition_to_system_disk (const char *os_dev)
}
/* If this is an IDE, SCSI or Virtio disk. */
if (strncmp ("vdisk", p, 5) == 0
&& p[5] >= 'a' && p[5] <= 'z')
{
/* /dev/vdisk[a-z][0-9]* */
p[6] = '\0';
return path;
}
if ((strncmp ("hd", p, 2) == 0
|| strncmp ("vd", p, 2) == 0
|| strncmp ("sd", p, 2) == 0)