Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 virtualization guest drivers.
  10. This option alone does not add any kernel code.
  11. If you say N, all options in this submenu will be skipped and disabled.
  12. if VIRTUALIZATION
  13. config KVM
  14. tristate "Kernel-based Virtual Machine (KVM) support"
  15. depends on X86 && EXPERIMENTAL
  16. select ANON_INODES
  17. ---help---
  18. Support hosting fully virtualized guest machines using hardware
  19. virtualization extensions. You will need a fairly recent
  20. processor equipped with virtualization extensions. You will also
  21. need to select one or more of the processor modules below.
  22. This module provides access to the hardware capabilities through
  23. a character device node named /dev/kvm.
  24. To compile this as a module, choose M here: the module
  25. will be called kvm.
  26. If unsure, say N.
  27. config KVM_INTEL
  28. tristate "KVM for Intel processors support"
  29. depends on KVM
  30. ---help---
  31. Provides support for KVM on Intel processors equipped with the VT
  32. extensions.
  33. config KVM_AMD
  34. tristate "KVM for AMD processors support"
  35. depends on KVM
  36. ---help---
  37. Provides support for KVM on AMD processors equipped with the AMD-V
  38. (SVM) extensions.
  39. endif # VIRTUALIZATION