diff options
author | Scott Murray <scott.murray@konsulko.com> | 2023-01-16 18:12:07 -0500 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-01-29 14:29:37 +0000 |
commit | 3b3008fc244b29a1022c93dd567db73990a8c505 (patch) | |
tree | fc090a5133c6560bb34076c281df6860fc22f466 /recipes-kernel/linux | |
parent | 9b987f524566da07fd451430ae6a1372470c364f (diff) |
linux: update virtio-aarch64 kernel configuration
Update virtio-aarch64 kernel configuration for QEMU+KVM demo to
turn on some CAN and USB device support to allow using some
emulated and passthrough devices where there is currently not a
workable virtio backend solution.
Bug-AGL: SPEC-4618
Change-Id: I9e574f54d1696d5b45e7f04b4d51002eafac5f04
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
(cherry picked from commit e511c8eca18ed0d4895c8e150c8670be45fb608a)
Diffstat (limited to 'recipes-kernel/linux')
-rw-r--r-- | recipes-kernel/linux/linux/kvm-demo-can-devices.cfg (renamed from recipes-kernel/linux/linux/virtio-demo-can-devices.cfg) | 0 | ||||
-rw-r--r-- | recipes-kernel/linux/linux/kvm-demo-usb.cfg | 4 | ||||
-rw-r--r-- | recipes-kernel/linux/linux_agldemo.inc | 4 |
3 files changed, 7 insertions, 1 deletions
diff --git a/recipes-kernel/linux/linux/virtio-demo-can-devices.cfg b/recipes-kernel/linux/linux/kvm-demo-can-devices.cfg index 17cb166a8..17cb166a8 100644 --- a/recipes-kernel/linux/linux/virtio-demo-can-devices.cfg +++ b/recipes-kernel/linux/linux/kvm-demo-can-devices.cfg diff --git a/recipes-kernel/linux/linux/kvm-demo-usb.cfg b/recipes-kernel/linux/linux/kvm-demo-usb.cfg new file mode 100644 index 000000000..2fa56a1b7 --- /dev/null +++ b/recipes-kernel/linux/linux/kvm-demo-usb.cfg @@ -0,0 +1,4 @@ +CONFIG_USB=y +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_PCI=y diff --git a/recipes-kernel/linux/linux_agldemo.inc b/recipes-kernel/linux/linux_agldemo.inc index 7274364ce..1126c7673 100644 --- a/recipes-kernel/linux/linux_agldemo.inc +++ b/recipes-kernel/linux/linux_agldemo.inc @@ -40,7 +40,9 @@ AGL_KCONFIG_FRAGMENTS_DEMO:append:qemuarm64 = " most_deps.cfg" # We don't want most of the above for the virtio guest kernels, # use an explicit list AGL_KCONFIG_FRAGMENTS_DEMO:virtio-all = " \ - virtio-demo-can-devices.cfg \ + kvm-demo-can-devices.cfg \ + kvm-demo-usb.cfg \ + usbaudio.cfg \ hid.cfg \ " |