Config.in.virtio 879 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. menu "Virtio driver support"
  4. config ADK_KERNEL_VIRTIO
  5. bool
  6. config ADK_KERNEL_VIRTIO_CONSOLE
  7. bool
  8. config ADK_KERNEL_VIRTIO_PCI_LEGACY
  9. bool
  10. config ADK_KERNEL_VIRTIO_PCI
  11. bool
  12. config ADK_KERNEL_VIRTIO_MMIO
  13. bool
  14. config ADK_KERNEL_VIRTIO_NET
  15. tristate "Virtio net driver"
  16. select ADK_KERNEL_VIRTIO
  17. select ADK_KERNEL_VIRTIO_MMIO
  18. select ADK_KERNEL_VIRTIO_PCI
  19. select ADK_KERNEL_VIRTIO_PCI_LEGACY
  20. default n
  21. help
  22. Enables support for Virtio Net driver.
  23. config ADK_KERNEL_VIRTIO_BLK
  24. tristate "Virtio block driver"
  25. select ADK_KERNEL_VIRTIO
  26. select ADK_KERNEL_VIRTIO_PCI
  27. select ADK_KERNEL_VIRTIO_PCI_LEGACY
  28. select ADK_KERNEL_VIRTIO_MMIO
  29. select ADK_KERNEL_BLK_DEV
  30. default n
  31. help
  32. Enables support for Virtio Block driver.
  33. endmenu