Kconfig 1.3 KB

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