summaryrefslogtreecommitdiff
path: root/target/linux/config/Config.in.virtio
blob: 634770a51b11448da24521e065f1208de9396f04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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
	bool

config ADK_KERNEL_VIRTIO_CONSOLE
	bool

config ADK_KERNEL_VIRTIO_PCI_LEGACY
	bool

config ADK_KERNEL_VIRTIO_PCI
	bool

config ADK_KERNEL_VIRTIO_MMIO
	bool

config 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