Kconfig 993 B

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