From b827a90a35184f3d76c9989128c3084dc3a7d3ae 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 e00621bf8..8c2187160 100644 --- a/buildroot-external/board/ova/kernel.config +++ b/buildroot-external/board/ova/kernel.config @@ -7,3 +7,4 @@ CONFIG_VIRTIO_BALLOON=m CONFIG_VIRTIO_INPUT=m CONFIG_VIRTIO_BLK=m +CONFIG_USB_XHCI_HCD=y