Kconfig 883 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #
  2. # KVM configuration
  3. #
  4. source "virt/kvm/Kconfig"
  5. menuconfig VIRTUALIZATION
  6. bool "Virtualization"
  7. ---help---
  8. Say Y here to get to see options for using your Linux host to run
  9. other operating systems inside virtual machines (guests).
  10. This option alone does not add any kernel code.
  11. If you say N, all options in this submenu will be skipped and
  12. disabled.
  13. if VIRTUALIZATION
  14. config KVM
  15. tristate "Kernel-based Virtual Machine (KVM) support"
  16. depends on HAVE_KVM && MODULES
  17. select PREEMPT_NOTIFIERS
  18. select ANON_INODES
  19. select SRCU
  20. ---help---
  21. Support hosting paravirtualized guest machines.
  22. This module provides access to the hardware capabilities through
  23. a character device node named /dev/kvm.
  24. To compile this as a module, choose M here: the module
  25. will be called kvm.
  26. If unsure, say N.
  27. source drivers/vhost/Kconfig
  28. endif # VIRTUALIZATION