X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsysteminfo.py;h=bc605de2de84732bbf55579b203d3e405683a0d0;hb=9152681d702f99c9736c31aa5bc4af71d03211dc;hp=a11c79e568be9934b0ef4152ada82c1739e20b65;hpb=2acb27173bcc6b149c5fa116a98a387b59dc7c9c;p=bootmanager.git diff --git a/source/systeminfo.py b/source/systeminfo.py index a11c79e..bc605de 100755 --- a/source/systeminfo.py +++ b/source/systeminfo.py @@ -117,7 +117,8 @@ def get_block_device_list(vars = {}, log = sys.stderr): # table with valid scsi/sata/ide/raid block device names valid_blk_names = {} # add in valid sd and hd block device names - for blk_prefix in ('sd','hd'): + # also check for vd (virtio devices used with kvm) + for blk_prefix in ('sd','hd','vd'): for blk_num in map ( \ lambda x: chr(x), range(ord('a'),ord('z')+1)): devicename="%s%c" % (blk_prefix, blk_num)