Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # KVM configuration
  3. #
  4. config HAVE_KVM
  5. bool
  6. menuconfig VIRTUALIZATION
  7. bool "Virtualization"
  8. depends on HAVE_KVM || IA64
  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 Itanium 2 processors support"
  33. depends on KVM && m
  34. ---help---
  35. Provides support for KVM on Itanium 2 processors equipped with the VT
  36. extensions.
  37. config KVM_TRACE
  38. bool
  39. endif # VIRTUALIZATION