| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.menu "Virtio driver support"depends on ADK_TARGET_WITH_VIRTIO || ADK_TARGET_QEMUconfig ADK_KERNEL_VIRTIO	boolconfig ADK_KERNEL_VIRTIO_CONSOLE	boolconfig ADK_KERNEL_VIRTIO_PCI_LEGACY	boolconfig ADK_KERNEL_VIRTIO_PCI	boolconfig ADK_KERNEL_VIRTIO_MMIO	boolconfig ADK_KERNEL_VIRTIO_NET	tristate "Virtio net driver"	select ADK_KERNEL_VIRTIO	select ADK_KERNEL_VIRTIO_MMIO	select ADK_KERNEL_VIRTIO_PCI	select ADK_KERNEL_VIRTIO_PCI_LEGACY	default y if ADK_TARGET_SYSTEM_QEMU_S390	default n	help	  Enables support for Virtio Net driver.config ADK_KERNEL_VIRTIO_BLK	tristate "Virtio block driver"	select ADK_KERNEL_VIRTIO	select ADK_KERNEL_VIRTIO_PCI	select ADK_KERNEL_VIRTIO_PCI_LEGACY	select ADK_KERNEL_VIRTIO_MMIO	select ADK_KERNEL_BLK_DEV	default n	help	  Enables support for Virtio Block driver.endmenu
 |