qemu/hw/virtio/Kconfig
<<
>>
Prefs
   1config VIRTIO
   2    bool
   3
   4config VIRTIO_RNG
   5    bool
   6    default y
   7    depends on VIRTIO
   8
   9config VIRTIO_PCI
  10    bool
  11    default y if PCI_DEVICES
  12    depends on PCI
  13    select VIRTIO
  14
  15config VIRTIO_MMIO
  16    bool
  17    select VIRTIO
  18
  19config VIRTIO_CCW
  20    bool
  21    select VIRTIO
  22
  23config VIRTIO_BALLOON
  24    bool
  25    default y
  26    depends on VIRTIO
  27
  28config VIRTIO_CRYPTO
  29    bool
  30    default y
  31    depends on VIRTIO
  32
  33config VIRTIO_PMEM_SUPPORTED
  34    bool
  35
  36config VIRTIO_PMEM
  37    bool
  38    default y
  39    depends on VIRTIO
  40    depends on VIRTIO_PMEM_SUPPORTED
  41    select MEM_DEVICE
  42