Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # KVM configuration
  3. #
  4. menuconfig VIRTUALIZATION
  5. bool "Virtualization"
  6. depends on X86
  7. default y
  8. if VIRTUALIZATION
  9. config KVM
  10. tristate "Kernel-based Virtual Machine (KVM) support"
  11. depends on X86 && EXPERIMENTAL
  12. depends on X86_CMPXCHG64 || 64BIT
  13. ---help---
  14. Support hosting fully virtualized guest machines using hardware
  15. virtualization extensions. You will need a fairly recent
  16. processor equipped with virtualization extensions. You will also
  17. need to select one or more of the processor modules below.
  18. This module provides access to the hardware capabilities through
  19. a character device node named /dev/kvm.
  20. To compile this as a module, choose M here: the module
  21. will be called kvm.
  22. If unsure, say N.
  23. config KVM_INTEL
  24. tristate "KVM for Intel processors support"
  25. depends on KVM
  26. ---help---
  27. Provides support for KVM on Intel processors equipped with the VT
  28. extensions.
  29. config KVM_AMD
  30. tristate "KVM for AMD processors support"
  31. depends on KVM
  32. ---help---
  33. Provides support for KVM on AMD processors equipped with the AMD-V
  34. (SVM) extensions.
  35. endif # VIRTUALIZATION