Kconfig 961 B

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