Config.in.virtio 921 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 y if ADK_TARGET_SYSTEM_QEMU_S390
  21. default n
  22. help
  23. Enables support for Virtio Net driver.
  24. config ADK_KERNEL_VIRTIO_BLK
  25. tristate "Virtio block driver"
  26. select ADK_KERNEL_VIRTIO
  27. select ADK_KERNEL_VIRTIO_PCI
  28. select ADK_KERNEL_VIRTIO_PCI_LEGACY
  29. select ADK_KERNEL_VIRTIO_MMIO
  30. select ADK_KERNEL_BLK_DEV
  31. default n
  32. help
  33. Enables support for Virtio Block driver.
  34. endmenu