Skip to content

Commit

Permalink
hw: Include the VMWare devices only in the x86 targets
Browse files Browse the repository at this point in the history
It seems a little bit weird that the para-virtualized x86 VMWare
devices "vmware-svga" and "vmxnet3" also show up in non-x86 targets.
They are likely pretty useless there (since the guest OSes likely
do not have any drivers for those enabled), so let's change this and
only enable those devices by default for the classical x86 targets.

Message-Id: <20221213095144.42355-1-thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
  • Loading branch information
huth committed Dec 15, 2022
1 parent 4db546d commit c57e0ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hw/display/Kconfig
Expand Up @@ -55,7 +55,7 @@ config VGA_MMIO

config VMWARE_VGA
bool
default y if PCI_DEVICES
default y if PCI_DEVICES && PC_PCI
depends on PCI
select VGA

Expand Down
2 changes: 1 addition & 1 deletion hw/net/Kconfig
Expand Up @@ -51,7 +51,7 @@ config RTL8139_PCI

config VMXNET3_PCI
bool
default y if PCI_DEVICES
default y if PCI_DEVICES && PC_PCI
depends on PCI

config SMC91C111
Expand Down

0 comments on commit c57e0ea

Please sign in to comment.