Config.in.virtio 570 B

1234567891011121314151617181920212223242526272829
  1. menu "Virtio driver support"
  2. depends on !ADK_TARGET_QEMU_WITH_VIRTIO && ADK_HARDWARE_QEMU
  3. config ADK_KERNEL_VIRTIO
  4. boolean
  5. config ADK_KERNEL_VIRTIO_PCI
  6. boolean
  7. config ADK_KERNEL_VIRTIO_NET
  8. prompt "Virtio net driver"
  9. tristate
  10. select ADK_KERNEL_VIRTIO
  11. select ADK_KERNEL_VIRTIO_PCI
  12. default n
  13. help
  14. Enables support for Virtio Net driver.
  15. config ADK_KERNEL_VIRTIO_BLK
  16. prompt "Virtio block driver"
  17. tristate
  18. select ADK_KERNEL_VIRTIO
  19. select ADK_KERNEL_VIRTIO_PCI
  20. select ADK_KERNEL_BLK_DEV
  21. default n
  22. help
  23. Enables support for Virtio Block driver.
  24. endmenu