| 123456789101112131415161718192021222324252627282930313233343536 | menu "Virtio driver support"config ADK_KERNEL_VIRTIO	booleanconfig ADK_KERNEL_VIRTIO_CONSOLE	booleanconfig ADK_KERNEL_VIRTIO_PCI	booleanconfig ADK_KERNEL_VIRTIO_MMIO	booleanconfig ADK_KERNEL_VIRTIO_NET	prompt "Virtio net driver"	tristate	select ADK_KERNEL_VIRTIO	select ADK_KERNEL_VIRTIO_MMIO	select ADK_KERNEL_VIRTIO_PCI	default n	help	  Enables support for Virtio Net driver.config ADK_KERNEL_VIRTIO_BLK	prompt "Virtio block driver"	tristate	select ADK_KERNEL_VIRTIO	select ADK_KERNEL_VIRTIO_PCI	select ADK_KERNEL_VIRTIO_MMIO	select ADK_KERNEL_BLK_DEV	default n	help	  Enables support for Virtio Block driver.endmenu
 |