Kconfig 840 B

123456789101112131415161718192021222324252627282930313233343536
  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
  13. disabled.
  14. if VIRTUALIZATION
  15. config KVM
  16. tristate "Kernel-based Virtual Machine (KVM) support (EXPERIMENTAL)"
  17. depends on RISCV_SBI && MMU
  18. select MMU_NOTIFIER
  19. select PREEMPT_NOTIFIERS
  20. select KVM_MMIO
  21. select KVM_GENERIC_DIRTYLOG_READ_PROTECT
  22. select KVM_XFER_TO_GUEST_WORK
  23. select HAVE_KVM_VCPU_ASYNC_IOCTL
  24. select HAVE_KVM_EVENTFD
  25. select SRCU
  26. help
  27. Support hosting virtualized guest machines.
  28. If unsure, say N.
  29. endif # VIRTUALIZATION