Kconfig 943 字节
Newer Older
R
Rusty Russell 已提交
1 2
# Virtio always gets selected by whoever wants it.
config VIRTIO
3
	tristate
4 5 6

# Similarly the virtio ring implementation.
config VIRTIO_RING
7
	tristate
8
	depends on VIRTIO
A
Anthony Liguori 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

config VIRTIO_PCI
	tristate "PCI driver for virtio devices (EXPERIMENTAL)"
	depends on PCI && EXPERIMENTAL
	select VIRTIO
	select VIRTIO_RING
	---help---
	  This drivers provides support for virtio based paravirtual device
	  drivers over PCI.  This requires that your VMM has appropriate PCI
	  virtio backends.  Most QEMU based VMMs should support these devices
	  (like KVM or Xen).

	  Currently, the ABI is not considered stable so there is no guarantee
	  that this version of the driver will work with your VMM.

	  If unsure, say M.

R
Rusty Russell 已提交
26 27 28 29 30 31 32 33 34 35
config VIRTIO_BALLOON
	tristate "Virtio balloon driver (EXPERIMENTAL)"
	select VIRTIO
	select VIRTIO_RING
	---help---
	 This driver supports increasing and decreasing the amount
	 of memory within a KVM guest.

	 If unsure, say M.