Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #
  2. # KVM configuration
  3. #
  4. source "virt/kvm/Kconfig"
  5. menuconfig VIRTUALIZATION
  6. def_bool y
  7. prompt "KVM"
  8. ---help---
  9. Say Y here to get to see options for using your Linux host to run other
  10. operating systems inside virtual machines (guests).
  11. This option alone does not add any kernel code.
  12. If you say N, all options in this submenu will be skipped and disabled.
  13. if VIRTUALIZATION
  14. config KVM
  15. def_tristate y
  16. prompt "Kernel-based Virtual Machine (KVM) support"
  17. depends on HAVE_KVM
  18. select PREEMPT_NOTIFIERS
  19. select ANON_INODES
  20. select HAVE_KVM_CPU_RELAX_INTERCEPT
  21. select HAVE_KVM_EVENTFD
  22. select KVM_ASYNC_PF
  23. select KVM_ASYNC_PF_SYNC
  24. select HAVE_KVM_IRQCHIP
  25. select HAVE_KVM_IRQFD
  26. select HAVE_KVM_IRQ_ROUTING
  27. select SRCU
  28. ---help---
  29. Support hosting paravirtualized guest machines using the SIE
  30. virtualization capability on the mainframe. This should work
  31. on any 64bit machine.
  32. This module provides access to the hardware capabilities through
  33. a character device node named /dev/kvm.
  34. To compile this as a module, choose M here: the module
  35. will be called kvm.
  36. If unsure, say N.
  37. config KVM_S390_UCONTROL
  38. bool "Userspace controlled virtual machines"
  39. depends on KVM
  40. ---help---
  41. Allow CAP_SYS_ADMIN users to create KVM virtual machines that are
  42. controlled by userspace.
  43. If unsure, say N.
  44. # OK, it's a little counter-intuitive to do this, but it puts it neatly under
  45. # the virtualization menu.
  46. source drivers/vhost/Kconfig
  47. endif # VIRTUALIZATION