diff options
author | Thomas Huth <thuth@redhat.com> | 2017-09-28 11:52:41 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2017-10-16 13:29:49 +0200 |
commit | 03bf6b5c08c792f5c2b55d6038e9a6acbf43d9c3 (patch) | |
tree | 62fb892e4958b7db3183ef2fd5ed10fdca221840 /default-configs/x86_64-softmmu.mak | |
parent | b95b5a0a52b323533a7b5b2a0deedc7e9c6befd9 (diff) |
default-configs: Enable CONFIG_VMXNET3_PCI only on x86
The device can not be instantiated on many non-x86 and just prints
some error messages, e.g.:
$ qemu-system-ppc64 -device vmxnet3 -M g3beige
[vmxnet3][WR][vmxnet3_init_msix]: Failed to initialize MSI-X, error -95
[vmxnet3][WR][vmxnet3_pci_realize]: Failed to initialize MSI-X, configuration is inconsistent.
Since vmxnet3 is a para-virtualized device that is only useful on x86,
it should also only be enabled on the x86 targets.
Reviewed-by: Dmitry Fleytman <dmitry@daynix.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'default-configs/x86_64-softmmu.mak')
-rw-r--r-- | default-configs/x86_64-softmmu.mak | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/default-configs/x86_64-softmmu.mak b/default-configs/x86_64-softmmu.mak index 9bde2f1c4b..ea69e8289e 100644 --- a/default-configs/x86_64-softmmu.mak +++ b/default-configs/x86_64-softmmu.mak @@ -7,6 +7,7 @@ CONFIG_QXL=$(CONFIG_SPICE) CONFIG_VGA_ISA=y CONFIG_VGA_CIRRUS=y CONFIG_VMWARE_VGA=y +CONFIG_VMXNET3_PCI=y CONFIG_VIRTIO_VGA=y CONFIG_VMMOUSE=y CONFIG_IPMI=y |