summaryrefslogtreecommitdiff
path: root/target/linux/config/Config.in.kvm
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-09-16 17:22:57 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-09-16 17:22:57 +0200
commit81c4c7c2cf2c5ff27a6c02e41bf484a53ea942c2 (patch)
tree71e5ee053da99e7130d2668409b2abe676015546 /target/linux/config/Config.in.kvm
parent2fe7aa2130f3e72d2b39ed0929cfc6ae803cecd4 (diff)
make adk compile system work on shuttle
- add some missing packages like cpio, lzma and gnu wget - make microperl more featureful, needed for kernel-header installation - make a dependency to perl - fix header installation for $libc-dev package - fix 64bit uclibc setup, simplify gcc patches and totally unrelated - add preliminary kvm and libvirt support (not tested)
Diffstat (limited to 'target/linux/config/Config.in.kvm')
-rw-r--r--target/linux/config/Config.in.kvm46
1 files changed, 46 insertions, 0 deletions
diff --git a/target/linux/config/Config.in.kvm b/target/linux/config/Config.in.kvm
new file mode 100644
index 000000000..4fc515e0e
--- /dev/null
+++ b/target/linux/config/Config.in.kvm
@@ -0,0 +1,46 @@
+menu "Virtualization"
+depends on ADK_LINUX_X86_64_SHUTTLE
+
+config ADK_KERNEL_VIRTUALIZATION
+ bool
+ default n
+
+config ADK_KERNEL_KVM
+ bool
+ default n
+
+config ADK_KPACKAGE_KMOD_KVM
+ prompt "kmod-kvm.......................... Kernel-based Virtual Machine (KVM) support"
+ tristate
+ depends on !ADK_KERNEL_KVM
+ select ADK_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_KPACKAGE_KMOD_KVM_AMD
+ prompt "kmod-kvm-amd...................... KVM for AMD processors support"
+ tristate
+ depends on !ADK_KERNEL_KVM
+ select ADK_KERNEL_VIRTUALIZATION
+ default n
+ help
+ Provides support for KVM on AMD processors equipped with the AMD-V
+ (SVM) extensions.
+
+config ADK_KPACKAGE_KMOD_KVM_INTEL
+ prompt "kmod-kvm-intel.................... KVM for Intel processors support"
+ tristate
+ depends on !ADK_KERNEL_KVM
+ select ADK_KERNEL_VIRTUALIZATION
+ default n
+ help
+ Provides support for KVM on Intel processors equipped with the VT
+ extensions.
+
+endmenu