Kconfig 916 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 && EXPERIMENTAL
  17. select PREEMPT_NOTIFIERS
  18. select ANON_INODES
  19. ---help---
  20. Support hosting paravirtualized guest machines.
  21. This module provides access to the hardware capabilities through
  22. a character device node named /dev/kvm.
  23. To compile this as a module, choose M here: the module
  24. will be called kvm.
  25. If unsure, say N.
  26. source drivers/vhost/Kconfig
  27. source drivers/virtio/Kconfig
  28. endif # VIRTUALIZATION