Config.in.virtio 743 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. menu "Virtio driver support"
  2. config ADK_KERNEL_VIRTIO
  3. bool
  4. config ADK_KERNEL_VIRTIO_CONSOLE
  5. bool
  6. config ADK_KERNEL_VIRTIO_PCI_LEGACY
  7. bool
  8. config ADK_KERNEL_VIRTIO_PCI
  9. bool
  10. config ADK_KERNEL_VIRTIO_MMIO
  11. bool
  12. config ADK_KERNEL_VIRTIO_NET
  13. tristate "Virtio net driver"
  14. select ADK_KERNEL_VIRTIO
  15. select ADK_KERNEL_VIRTIO_MMIO
  16. select ADK_KERNEL_VIRTIO_PCI
  17. select ADK_KERNEL_VIRTIO_PCI_LEGACY
  18. default n
  19. help
  20. Enables support for Virtio Net driver.
  21. config ADK_KERNEL_VIRTIO_BLK
  22. tristate "Virtio block driver"
  23. select ADK_KERNEL_VIRTIO
  24. select ADK_KERNEL_VIRTIO_PCI
  25. select ADK_KERNEL_VIRTIO_PCI_LEGACY
  26. select ADK_KERNEL_VIRTIO_MMIO
  27. select ADK_KERNEL_BLK_DEV
  28. default n
  29. help
  30. Enables support for Virtio Block driver.
  31. endmenu