diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-16 10:48:13 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-16 10:48:13 +0100 |
commit | 5867aad78c4ebd154eace69b026b63d780be0e84 (patch) | |
tree | 122ab3035d32f22ac5cddb620d94bf3e2d7c0090 /target/linux/config | |
parent | 3c586ea3d495ffa77ab95d5cb1529ecbf208a63c (diff) |
use virtio drivers for sparc64
Diffstat (limited to 'target/linux/config')
-rw-r--r-- | target/linux/config/Config.in.virtio | 37 |
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 |