Kconfig 1.6 KB

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