blob: 4ee027baa61151f0a51cabebf2ca680f20fc383b (
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
|
config ADK_KERNEL_VIRTIO
boolean
config ADK_KERNEL_VIRTIO_PCI
boolean
config ADK_KERNEL_VIRTIO_NET
boolean
config ADK_KERNEL_VIRTIO_BLK
boolean
menu "Virtio driver support"
depends on !ADK_TARGET_QEMU_WITH_VIRTIO && ADK_HARDWARE_QEMU
config ADK_KPACKAGE_KMOD_VIRTIO_NET
prompt "kmod-virtio-net.................... Virtio net driver"
tristate
select ADK_KERNEL_VIRTIO
select ADK_KERNEL_VIRTIO_PCI
depends on !ADK_KERNEL_VIRTIO_NET
default n
help
Enables support for Virtio Net driver.
config ADK_KPACKAGE_KMOD_VIRTIO_BLK
prompt "kmod-virtio-block.................. Virtio block driver"
tristate
select ADK_KERNEL_VIRTIO
select ADK_KERNEL_VIRTIO_PCI
select ADK_KERNEL_BLK_DEV
depends on !ADK_KERNEL_VIRTIO_BLK
default n
help
Enables support for Virtio Block driver.
endmenu
|