Kconfig 1.4 KB

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