Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # KVM configuration
  3. #
  4. config HAVE_KVM
  5. bool
  6. menuconfig VIRTUALIZATION
  7. bool "Virtualization"
  8. default y
  9. ---help---
  10. Say Y here to get to see options for using your Linux host to run other
  11. operating systems inside virtual machines (guests).
  12. This option alone does not add any kernel code.
  13. If you say N, all options in this submenu will be skipped and disabled.
  14. if VIRTUALIZATION
  15. config KVM
  16. tristate "Kernel-based Virtual Machine (KVM) support"
  17. depends on HAVE_KVM && EXPERIMENTAL
  18. select PREEMPT_NOTIFIERS
  19. select ANON_INODES
  20. select S390_SWITCH_AMODE
  21. ---help---
  22. Support hosting paravirtualized guest machines using the SIE
  23. virtualization capability on the mainframe. This should work
  24. on any 64bit machine.
  25. This module provides access to the hardware capabilities through
  26. a character device node named /dev/kvm.
  27. To compile this as a module, choose M here: the module
  28. will be called kvm.
  29. If unsure, say N.
  30. config KVM_TRACE
  31. bool
  32. # OK, it's a little counter-intuitive to do this, but it puts it neatly under
  33. # the virtualization menu.
  34. source drivers/virtio/Kconfig
  35. endif # VIRTUALIZATION