Kconfig (ff36e78fdb251b9fa65028554689806961e011eb) | Kconfig (4f337faf1c55e55bdc49df13fcb3a3c45655899e) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# 3# KVM configuration 4# 5 6source "virt/kvm/Kconfig" 7 8menuconfig VIRTUALIZATION --- 45 unchanged lines hidden (view full) --- 54 This module provides access to the hardware capabilities through 55 a character device node named /dev/kvm. 56 57 To compile this as a module, choose M here: the module 58 will be called kvm. 59 60 If unsure, say N. 61 | 1# SPDX-License-Identifier: GPL-2.0 2# 3# KVM configuration 4# 5 6source "virt/kvm/Kconfig" 7 8menuconfig VIRTUALIZATION --- 45 unchanged lines hidden (view full) --- 54 This module provides access to the hardware capabilities through 55 a character device node named /dev/kvm. 56 57 To compile this as a module, choose M here: the module 58 will be called kvm. 59 60 If unsure, say N. 61 |
62config KVM_WERROR 63 bool "Compile KVM with -Werror" 64 # KASAN may cause the build to fail due to larger frames 65 default y if X86_64 && !KASAN 66 # We use the dependency on !COMPILE_TEST to not be enabled 67 # blindly in allmodconfig or allyesconfig configurations 68 depends on (X86_64 && !KASAN) || !COMPILE_TEST 69 depends on EXPERT 70 help 71 Add -Werror to the build flags for (and only for) i915.ko. 72 73 If in doubt, say "N". 74 |
|
62config KVM_INTEL 63 tristate "KVM for Intel (and compatible) processors support" 64 depends on KVM && IA32_FEAT_CTL 65 ---help--- 66 Provides support for KVM on processors equipped with Intel's VT 67 extensions, a.k.a. Virtual Machine Extensions (VMX). 68 69 To compile this as a module, choose M here: the module --- 32 unchanged lines hidden --- | 75config KVM_INTEL 76 tristate "KVM for Intel (and compatible) processors support" 77 depends on KVM && IA32_FEAT_CTL 78 ---help--- 79 Provides support for KVM on processors equipped with Intel's VT 80 extensions, a.k.a. Virtual Machine Extensions (VMX). 81 82 To compile this as a module, choose M here: the module --- 32 unchanged lines hidden --- |