Config.in.kvm 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. menu "Virtualization"
  2. depends on (ADK_TARGET_ARCH_X86_64 || ADK_TARGET_ARCH_X86) && ADK_TARGET_CPU_WITH_VT
  3. config ADK_KERNEL_VIRTUALIZATION
  4. bool
  5. default n
  6. config ADK_KERNEL_KVM
  7. prompt "Kernel-based Virtual Machine (KVM) support"
  8. tristate
  9. select ADK_KERNEL_VIRTUALIZATION
  10. default n
  11. help
  12. Support hosting fully virtualized guest machines using hardware
  13. virtualization extensions. You will need a fairly recent
  14. processor equipped with virtualization extensions. You will also
  15. need to select one or more of the processor modules below.
  16. This module provides access to the hardware capabilities through
  17. a character device node named /dev/kvm.
  18. config ADK_KERNEL_KVM_AMD
  19. prompt "KVM for AMD processors support"
  20. tristate
  21. select ADK_KERNEL_VIRTUALIZATION
  22. default n
  23. help
  24. Provides support for KVM on AMD processors equipped with the AMD-V
  25. (SVM) extensions.
  26. config ADK_KERNEL_KVM_INTEL
  27. prompt "KVM for Intel processors support"
  28. tristate
  29. select ADK_KERNEL_VIRTUALIZATION
  30. default n
  31. help
  32. Provides support for KVM on Intel processors equipped with the VT
  33. extensions.
  34. endmenu