From: Xiaoqing Wei <[email protected]> As the win guest driver is getting more huge, the virtio-win.vfd is now increased to 2.88M. Let's increase vfd in autotest to 2.88M too.
Signed-off-by: Xiaoqing Wei <[email protected]> --- client/virt/utils_disk.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/virt/utils_disk.py b/client/virt/utils_disk.py index 6a573c5..3ddcd17 100644 --- a/client/virt/utils_disk.py +++ b/client/virt/utils_disk.py @@ -77,7 +77,7 @@ class Disk(object): class FloppyDisk(Disk): """ - Represents a 1.44 MB floppy disk. We can copy files to it, and setup it in + Represents a 2.88 MB floppy disk. We can copy files to it, and setup it in convenient ways. """ @error.context_aware @@ -92,7 +92,7 @@ class FloppyDisk(Disk): os.makedirs(os.path.dirname(path)) try: - c_cmd = '%s create -f raw %s 1440k' % (qemu_img_binary, path) + c_cmd = '%s create -f raw %s 2880k' % (qemu_img_binary, path) utils.run(c_cmd, verbose=DEBUG) f_cmd = 'mkfs.msdos -s 1 %s' % path utils.run(f_cmd, verbose=DEBUG) -- 1.7.1 _______________________________________________ Autotest-kernel mailing list [email protected] https://www.redhat.com/mailman/listinfo/autotest-kernel
