Config.in.kvm 1.3 KB

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