-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 44020 b: refs/heads/master c: 6aa8b73 h: refs/heads/master v: v3
- Loading branch information
Avi Kivity
authored and
Linus Torvalds
committed
Dec 10, 2006
1 parent
8901863
commit b91f914
Showing
19 changed files
with
9,815 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: f5f1a24a2caa299bb7d294aee92d7dd3410d9ed7 | ||
refs/heads/master: 6aa8b732ca01c3d7a54e93f4d701b8aabbe60fb7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,4 +80,6 @@ source "drivers/rtc/Kconfig" | |
|
||
source "drivers/dma/Kconfig" | ||
|
||
source "drivers/kvm/Kconfig" | ||
|
||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# | ||
# KVM configuration | ||
# | ||
config KVM | ||
tristate "Kernel-based Virtual Machine (KVM) support" | ||
depends on X86 && EXPERIMENTAL | ||
---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. | ||
|
||
To compile this as a module, choose M here: the module | ||
will be called kvm. | ||
|
||
If unsure, say N. | ||
|
||
config KVM_INTEL | ||
tristate "KVM for Intel processors support" | ||
depends on KVM | ||
---help--- | ||
Provides support for KVM on Intel processors equipped with the VT | ||
extensions. | ||
|
||
config KVM_AMD | ||
tristate "KVM for AMD processors support" | ||
depends on KVM | ||
---help--- | ||
Provides support for KVM on AMD processors equipped with the AMD-V | ||
(SVM) extensions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# | ||
# Makefile for Kernel-based Virtual Machine module | ||
# | ||
|
||
kvm-objs := kvm_main.o mmu.o x86_emulate.o | ||
obj-$(CONFIG_KVM) += kvm.o | ||
kvm-intel-objs = vmx.o | ||
obj-$(CONFIG_KVM_INTEL) += kvm-intel.o | ||
kvm-amd-objs = svm.o | ||
obj-$(CONFIG_KVM_AMD) += kvm-amd.o |
Oops, something went wrong.