summaryrefslogtreecommitdiff
path: root/target/linux/config/Config.in.virtio
blob: 526e2920ea661ffcefb4a1765844ce48cdfbe202 (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
44
45
46
47
48
49
# 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_QEMU

config ADK_LINUX_KERNEL_VIRTIO_MENU
	bool

config ADK_LINUX_KERNEL_VIRTIO
	bool

config ADK_LINUX_KERNEL_VIRTIO_CONSOLE
	bool

config ADK_LINUX_KERNEL_VIRTIO_PCI_LEGACY
	bool

config ADK_LINUX_KERNEL_VIRTIO_PCI
	bool

config ADK_LINUX_KERNEL_VIRTIO_MMIO
	bool

config ADK_LINUX_KERNEL_VIRTIO_NET
	tristate "Virtio net driver"
	select ADK_LINUX_KERNEL_VIRTIO
	select ADK_LINUX_KERNEL_VIRTIO_MENU
	select ADK_LINUX_KERNEL_VIRTIO_MMIO
	select ADK_LINUX_KERNEL_VIRTIO_PCI
	select ADK_LINUX_KERNEL_VIRTIO_PCI_LEGACY
	default y if ADK_TARGET_SYSTEM_QEMU_S390
	default n
	help
	  Enables support for Virtio Net driver.

config ADK_LINUX_KERNEL_VIRTIO_BLK
	tristate "Virtio block driver"
	select ADK_LINUX_KERNEL_VIRTIO
	select ADK_LINUX_KERNEL_VIRTIO_MENU
	select ADK_LINUX_KERNEL_VIRTIO_PCI
	select ADK_LINUX_KERNEL_VIRTIO_PCI_LEGACY
	select ADK_LINUX_KERNEL_VIRTIO_MMIO
	select ADK_LINUX_KERNEL_BLK_DEV
	default n
	help
	  Enables support for Virtio Block driver.

endmenu