summaryrefslogtreecommitdiff
path: root/target/linux/config/Config.in.virtio
blob: 1012a69b420ce930b6ce5e6394a7dec023ed759a (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
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 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