Kconfig 1009 B

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