From 295a05e5a0006952bbb2709600f88f7b026b5892 Mon Sep 17 00:00:00 2001 From: Johannes Truschnigg <5927519+jtru@users.noreply.github.com> Date: Wed, 24 Oct 2018 15:54:26 +0200 Subject: [PATCH] Enable XHCI (USB3) support in ova kernel config (#221) With this change, hassos can have USB devices passed into a guest VM with the hypervisor emulating an XHCI controller. QEMU recommends using XHCI whenever possible, as it offers a much more virtualization-friendly architecture than its [EO]HCI predecessors (which are already support by the hassos kernel). --- buildroot-external/board/ova/kernel.config | 1 + 1 file changed, 1 insertion(+) diff --git a/buildroot-external/board/ova/kernel.config b/buildroot-external/board/ova/kernel.config index 8bff25b2a..2304ef2b6 100644 --- a/buildroot-external/board/ova/kernel.config +++ b/buildroot-external/board/ova/kernel.config @@ -15,3 +15,4 @@ CONFIG_VIRTIO_BALLOON=m CONFIG_VIRTIO_INPUT=m CONFIG_VIRTIO_BLK=m +CONFIG_USB_XHCI_HCD=y