Kconfig 1018 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # KVM configuration
  4. #
  5. source "virt/kvm/Kconfig"
  6. menuconfig VIRTUALIZATION
  7. bool "Virtualization"
  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 CPU_SUPPORTS_VZ
  17. depends on MIPS_FP_SUPPORT
  18. select EXPORT_UASM
  19. select KVM_COMMON
  20. select KVM_GENERIC_DIRTYLOG_READ_PROTECT
  21. select KVM_MMIO
  22. select KVM_GENERIC_HARDWARE_ENABLING
  23. select HAVE_KVM_READONLY_MEM
  24. help
  25. Support for hosting Guest kernels.
  26. config KVM_MIPS_DEBUG_COP0_COUNTERS
  27. bool "Maintain counters for COP0 accesses"
  28. depends on KVM
  29. help
  30. Maintain statistics for Guest COP0 accesses.
  31. A histogram of COP0 accesses is printed when the VM is
  32. shutdown.
  33. If unsure, say N.
  34. endif # VIRTUALIZATION