diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2019-03-16 21:08:05 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-20 11:44:13 +0100 |
commit | fa80da7b6984f3a32632da81baea8d4c0c6df68d (patch) | |
tree | b5ef4f30d75c9a76f942b7dd095a365756fed733 /hw | |
parent | aa889f73044ca0566a77e9980a371cc99b7939b6 (diff) | |
download | qemu-fa80da7b6984f3a32632da81baea8d4c0c6df68d.zip qemu-fa80da7b6984f3a32632da81baea8d4c0c6df68d.tar.gz qemu-fa80da7b6984f3a32632da81baea8d4c0c6df68d.tar.bz2 |
hw/isa/Kconfig: PIIX4 southbridge requires USB UHCI
This fixes when configuring with --without-default-devices:
$ qemu-system-mips64 -bios /dev/null -M malta
qemu-system-mips64: Unknown device 'piix4-usb-uhci' for bus 'PCI'
Fixes: 7c28b925b7e
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190316200818.8265-2-philmd@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/isa/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/isa/Kconfig b/hw/isa/Kconfig index c9a26c7..6db0d79 100644 --- a/hw/isa/Kconfig +++ b/hw/isa/Kconfig @@ -30,6 +30,7 @@ config PIIX4 # For historical reasons, SuperIO devices are created in the board # for PIIX4. select ISA_BUS + select USB_UHCI config VT82C686 bool |