summaryrefslogtreecommitdiff
path: root/target/linux/config/Config.in.virtio
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-02-16 11:19:11 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-02-16 11:19:11 +0100
commit0cbc41df2f0be20f56b7d252b319510337e90777 (patch)
tree7fcaca8035ca70589bf5105d66092f4bdca20107 /target/linux/config/Config.in.virtio
parent1c2490cf2b6382a448c8b854a9040636e6c2d38b (diff)
parent3757bab8c484ca0f7ef4e14402f9d1e8f0354d68 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'target/linux/config/Config.in.virtio')
-rw-r--r--target/linux/config/Config.in.virtio37
1 files changed, 37 insertions, 0 deletions
diff --git a/target/linux/config/Config.in.virtio b/target/linux/config/Config.in.virtio
new file mode 100644
index 000000000..51cf67d54
--- /dev/null
+++ b/target/linux/config/Config.in.virtio
@@ -0,0 +1,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
+
+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