Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. ---help---
  13. Support hosting fully virtualized guest machines using hardware
  14. virtualization extensions. You will need a fairly recent
  15. processor equipped with virtualization extensions. You will also
  16. need to select one or more of the processor modules below.
  17. This module provides access to the hardware capabilities through
  18. a character device node named /dev/kvm.
  19. To compile this as a module, choose M here: the module
  20. will be called kvm.
  21. If unsure, say N.
  22. config KVM_INTEL
  23. tristate "KVM for Intel processors support"
  24. depends on KVM
  25. ---help---
  26. Provides support for KVM on Intel processors equipped with the VT
  27. extensions.
  28. config KVM_AMD
  29. tristate "KVM for AMD processors support"
  30. depends on KVM
  31. ---help---
  32. Provides support for KVM on AMD processors equipped with the AMD-V
  33. (SVM) extensions.
  34. endif # VIRTUALIZATION