X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2Fsysteminfo.py;h=78fc2b63a999abd45c53c22d47b87f6a459f5a13;hb=b4e653e0b89780332aac00afdbde3590dba17c4e;hp=94d9f788606e15ce9fdcd92555c982e9009d5492;hpb=09e070d8ae88887b5d53c9a3293029e163683279;p=bootmanager.git diff --git a/source/systeminfo.py b/source/systeminfo.py index 94d9f78..78fc2b6 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)