Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1 | # |
| 2 | # KVM configuration |
| 3 | # |
Jan Engelhardt | de06206 | 2007-05-23 14:22:11 -0700 | [diff] [blame] | 4 | menuconfig VIRTUALIZATION |
| 5 | bool "Virtualization" |
Martin Schwidefsky | eeca7a3 | 2007-05-10 15:45:56 +0200 | [diff] [blame] | 6 | depends on X86 |
Jan Engelhardt | de06206 | 2007-05-23 14:22:11 -0700 | [diff] [blame] | 7 | default y |
Jan Engelhardt | 06bfb7e | 2007-08-18 12:56:21 +0200 | [diff] [blame] | 8 | ---help--- |
Avi Kivity | 36a7409 | 2007-09-22 14:43:45 +0200 | [diff] [blame] | 9 | Say Y here to get to see options for using your Linux host to run other |
| 10 | operating systems inside virtual machines (guests). |
Jan Engelhardt | 06bfb7e | 2007-08-18 12:56:21 +0200 | [diff] [blame] | 11 | This option alone does not add any kernel code. |
| 12 | |
| 13 | If you say N, all options in this submenu will be skipped and disabled. |
Jan Engelhardt | de06206 | 2007-05-23 14:22:11 -0700 | [diff] [blame] | 14 | |
| 15 | if VIRTUALIZATION |
Avi Kivity | fd24dc4 | 2006-12-13 00:33:44 -0800 | [diff] [blame] | 16 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 17 | config KVM |
| 18 | tristate "Kernel-based Virtual Machine (KVM) support" |
| 19 | depends on X86 && EXPERIMENTAL |
Avi Kivity | 15ad714 | 2007-07-11 18:17:21 +0300 | [diff] [blame] | 20 | select PREEMPT_NOTIFIERS |
Avi Kivity | 7766879 | 2007-07-22 12:40:30 +0300 | [diff] [blame] | 21 | select ANON_INODES |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 22 | ---help--- |
| 23 | Support hosting fully virtualized guest machines using hardware |
| 24 | virtualization extensions. You will need a fairly recent |
| 25 | processor equipped with virtualization extensions. You will also |
| 26 | need to select one or more of the processor modules below. |
| 27 | |
| 28 | This module provides access to the hardware capabilities through |
| 29 | a character device node named /dev/kvm. |
| 30 | |
| 31 | To compile this as a module, choose M here: the module |
| 32 | will be called kvm. |
| 33 | |
| 34 | If unsure, say N. |
| 35 | |
| 36 | config KVM_INTEL |
| 37 | tristate "KVM for Intel processors support" |
| 38 | depends on KVM |
| 39 | ---help--- |
| 40 | Provides support for KVM on Intel processors equipped with the VT |
| 41 | extensions. |
| 42 | |
| 43 | config KVM_AMD |
| 44 | tristate "KVM for AMD processors support" |
| 45 | depends on KVM |
| 46 | ---help--- |
| 47 | Provides support for KVM on AMD processors equipped with the AMD-V |
| 48 | (SVM) extensions. |
Avi Kivity | fd24dc4 | 2006-12-13 00:33:44 -0800 | [diff] [blame] | 49 | |
Rusty Russell | 9525ca0 | 2007-10-22 10:55:43 +1000 | [diff] [blame] | 50 | # OK, it's a little counter-intuitive to do this, but it puts it neatly under |
| 51 | # the virtualization menu. |
| 52 | source drivers/lguest/Kconfig |
| 53 | |
Jan Engelhardt | de06206 | 2007-05-23 14:22:11 -0700 | [diff] [blame] | 54 | endif # VIRTUALIZATION |