Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # KVM configuration
  3. #
  4. menuconfig VIRTUALIZATION
  5. bool "Virtualization"
  6. depends on X86
  7. default y
  8. ---help---
  9. Say Y here to get to see options for using your Linux host to run other
  10. operating systems inside virtual machines (guests).
  11. This option alone does not add any kernel code.
  12. If you say N, all options in this submenu will be skipped and disabled.
  13. if VIRTUALIZATION
  14. config KVM
  15. tristate "Kernel-based Virtual Machine (KVM) support"
  16. depends on X86 && EXPERIMENTAL
  17. select ANON_INODES
  18. ---help---
  19. Support hosting fully virtualized guest machines using hardware
  20. virtualization extensions. You will need a fairly recent
  21. processor equipped with virtualization extensions. You will also
  22. need to select one or more of the processor modules below.
  23. This module provides access to the hardware capabilities through
  24. a character device node named /dev/kvm.
  25. To compile this as a module, choose M here: the module
  26. will be called kvm.
  27. If unsure, say N.
  28. config KVM_INTEL
  29. tristate "KVM for Intel processors support"
  30. depends on KVM
  31. ---help---
  32. Provides support for KVM on Intel processors equipped with the VT
  33. extensions.
  34. config KVM_AMD
  35. tristate "KVM for AMD processors support"
  36. depends on KVM
  37. ---help---
  38. Provides support for KVM on AMD processors equipped with the AMD-V
  39. (SVM) extensions.
  40. endif # VIRTUALIZATION