summaryrefslogtreecommitdiff
path: root/target/waldux/config/Config.in.kvm
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2018-03-03 15:46:47 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2018-03-07 20:44:04 +0100
commit9bb871a0bb4c239239944d28bd4d5cfa19d84f62 (patch)
treeb1c2eee95a3b475748c89d0075f604bb159a3271 /target/waldux/config/Config.in.kvm
parenta4767b13763b91dfb0aa75d2985d63d7ed9cb64c (diff)
add support for waldux
Diffstat (limited to 'target/waldux/config/Config.in.kvm')
-rw-r--r--target/waldux/config/Config.in.kvm39
1 files changed, 39 insertions, 0 deletions
diff --git a/target/waldux/config/Config.in.kvm b/target/waldux/config/Config.in.kvm
new file mode 100644
index 000000000..0e1606019
--- /dev/null
+++ b/target/waldux/config/Config.in.kvm
@@ -0,0 +1,39 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+menu "Virtualization"
+depends on (ADK_TARGET_ARCH_X86_64 || ADK_TARGET_ARCH_X86) && ADK_TARGET_CPU_WITH_VT
+
+config ADK_WALDUX_KERNEL_VIRTUALIZATION
+ bool
+ default n
+
+config ADK_WALDUX_KERNEL_KVM
+ tristate "Kernel-based Virtual Machine (KVM) support"
+ select ADK_WALDUX_KERNEL_VIRTUALIZATION
+ default n
+ help
+ Support hosting fully virtualized guest machines using hardware
+ virtualization extensions. You will need a fairly recent
+ processor equipped with virtualization extensions. You will also
+ need to select one or more of the processor modules below.
+ This module provides access to the hardware capabilities through
+ a character device node named /dev/kvm.
+
+config ADK_WALDUX_KERNEL_KVM_AMD
+ tristate "KVM for AMD processors support"
+ select ADK_WALDUX_KERNEL_VIRTUALIZATION
+ default n
+ help
+ Provides support for KVM on AMD processors equipped with the AMD-V
+ (SVM) extensions.
+
+config ADK_WALDUX_KERNEL_KVM_INTEL
+ tristate "KVM for Intel processors support"
+ select ADK_WALDUX_KERNEL_VIRTUALIZATION
+ default n
+ help
+ Provides support for KVM on Intel processors equipped with the VT
+ extensions.
+
+endmenu