Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # KVM configuration
  3. #
  4. source "virt/kvm/Kconfig"
  5. menuconfig VIRTUALIZATION
  6. bool "Virtualization"
  7. depends on HAVE_KVM
  8. ---help---
  9. Say Y here to get to see options for using your Linux host to run
  10. other 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. tristate "Kernel-based Virtual Machine (KVM) support"
  16. depends on HAVE_KVM
  17. select PREEMPT_NOTIFIERS
  18. select ANON_INODES
  19. select KVM_MMIO
  20. ---help---
  21. Support for hosting Guest kernels.
  22. Currently supported on MIPS32 processors.
  23. config KVM_MIPS_DYN_TRANS
  24. bool "KVM/MIPS: Dynamic binary translation to reduce traps"
  25. depends on KVM
  26. ---help---
  27. When running in Trap & Emulate mode patch privileged
  28. instructions to reduce the number of traps.
  29. If unsure, say Y.
  30. config KVM_MIPS_DEBUG_COP0_COUNTERS
  31. bool "Maintain counters for COP0 accesses"
  32. depends on KVM
  33. ---help---
  34. Maintain statistics for Guest COP0 accesses.
  35. A histogram of COP0 accesses is printed when the VM is
  36. shutdown.
  37. If unsure, say N.
  38. source drivers/vhost/Kconfig
  39. endif # VIRTUALIZATION