Kconfig 1.4 KB

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