mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 18:33:11 +00:00
68b9fa6423
virVMXFormatHardDisk() and virVMXFormatCDROM() duplicated a lot of code from each other and made a lot of nested if checks to build each part of the VMX file. This hopefully simplifies the code path while combining the two functions with no net difference.
29 lines
568 B
Plaintext
29 lines
568 B
Plaintext
#
|
|
# These symbols are dependent upon --with-esx via WITH_ESX or --with-vmware via WITH_VMWARE.
|
|
#
|
|
|
|
# vmx/vmx.h
|
|
virVMXConvertToUTF8;
|
|
virVMXDomainXMLConfInit;
|
|
virVMXEscapeHex;
|
|
virVMXFormatConfig;
|
|
virVMXFormatDisk;
|
|
virVMXFormatEthernet;
|
|
virVMXFormatFloppy;
|
|
virVMXFormatParallel;
|
|
virVMXFormatSerial;
|
|
virVMXFormatVNC;
|
|
virVMXParseConfig;
|
|
virVMXParseDisk;
|
|
virVMXParseEthernet;
|
|
virVMXParseParallel;
|
|
virVMXParseSCSIController;
|
|
virVMXParseSerial;
|
|
virVMXParseVNC;
|
|
virVMXUnescapeHex;
|
|
|
|
# Let emacs know we want case-insensitive sorting
|
|
# Local Variables:
|
|
# sort-fold-case: t
|
|
# End:
|