| 123456789101112131415161718192021222324252627282930313233343536373839404142 | # 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"config 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 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
 |