Config.in.kvm 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. menu "Virtualization"
  4. depends on (ADK_TARGET_ARCH_X86_64 || ADK_TARGET_ARCH_X86) && ADK_TARGET_CPU_WITH_VT
  5. config ADK_WALDUX_KERNEL_VIRTUALIZATION
  6. bool
  7. default n
  8. config ADK_WALDUX_KERNEL_KVM
  9. tristate "Kernel-based Virtual Machine (KVM) support"
  10. select ADK_WALDUX_KERNEL_VIRTUALIZATION
  11. default n
  12. help
  13. Support hosting fully virtualized guest machines using hardware
  14. virtualization extensions. You will need a fairly recent
  15. processor equipped with virtualization extensions. You will also
  16. need to select one or more of the processor modules below.
  17. This module provides access to the hardware capabilities through
  18. a character device node named /dev/kvm.
  19. config ADK_WALDUX_KERNEL_KVM_AMD
  20. tristate "KVM for AMD processors support"
  21. select ADK_WALDUX_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_WALDUX_KERNEL_KVM_INTEL
  27. tristate "KVM for Intel processors support"
  28. select ADK_WALDUX_KERNEL_VIRTUALIZATION
  29. default n
  30. help
  31. Provides support for KVM on Intel processors equipped with the VT
  32. extensions.
  33. endmenu