linux: update to 6.10.x, 6.9.x is EOL
[openadk.git] / target / linux / config / Config.in.virtio
blob526e2920ea661ffcefb4a1765844ce48cdfbe202
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 menu "Virtio driver support"
5 depends on ADK_TARGET_WITH_VIRTIO || ADK_TARGET_QEMU
7 config ADK_LINUX_KERNEL_VIRTIO_MENU
8         bool
10 config ADK_LINUX_KERNEL_VIRTIO
11         bool
13 config ADK_LINUX_KERNEL_VIRTIO_CONSOLE
14         bool
16 config ADK_LINUX_KERNEL_VIRTIO_PCI_LEGACY
17         bool
19 config ADK_LINUX_KERNEL_VIRTIO_PCI
20         bool
22 config ADK_LINUX_KERNEL_VIRTIO_MMIO
23         bool
25 config ADK_LINUX_KERNEL_VIRTIO_NET
26         tristate "Virtio net driver"
27         select ADK_LINUX_KERNEL_VIRTIO
28         select ADK_LINUX_KERNEL_VIRTIO_MENU
29         select ADK_LINUX_KERNEL_VIRTIO_MMIO
30         select ADK_LINUX_KERNEL_VIRTIO_PCI
31         select ADK_LINUX_KERNEL_VIRTIO_PCI_LEGACY
32         default y if ADK_TARGET_SYSTEM_QEMU_S390
33         default n
34         help
35           Enables support for Virtio Net driver.
37 config ADK_LINUX_KERNEL_VIRTIO_BLK
38         tristate "Virtio block driver"
39         select ADK_LINUX_KERNEL_VIRTIO
40         select ADK_LINUX_KERNEL_VIRTIO_MENU
41         select ADK_LINUX_KERNEL_VIRTIO_PCI
42         select ADK_LINUX_KERNEL_VIRTIO_PCI_LEGACY
43         select ADK_LINUX_KERNEL_VIRTIO_MMIO
44         select ADK_LINUX_KERNEL_BLK_DEV
45         default n
46         help
47           Enables support for Virtio Block driver.
49 endmenu