mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
842f6fd338
The vmx file parsing code was reporting errors when parsing floppy.fileName entries if the filename didn't end in .flp. There is no such restriction in ESX; even using the GUI to configure floppy filenames you can specify any arbitrary file with any extension. Fix by changing the vmx parsing code so that it uses the floppy.fileType value to determine whether floppy.fileName refers to a block device or a regular file. Also remove code that would have generated an error if no floppy.fileName was specified. This is not an error either. Updated the floppy tests in vmx2xmltest.c and xml2vmxtest.c.
9 lines
207 B
Plaintext
9 lines
207 B
Plaintext
config.version = "8"
|
|
virtualHW.version = "4"
|
|
floppy0.present = "true"
|
|
floppy0.fileType = "file"
|
|
floppy0.fileName = "floppy.flp"
|
|
floppy1.present = "true"
|
|
floppy1.fileType = "file"
|
|
floppy1.fileName = "floppy"
|