mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-22 06:32:08 +00:00
KVM: ppc: fix Kconfig constraints
Make sure that CONFIG_KVM cannot be selected without processor support (currently, 440 is the only processor implementation available). Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
7874980922
commit
74ef740da6
1 changed files with 8 additions and 10 deletions
|
@ -15,25 +15,23 @@ menuconfig VIRTUALIZATION
|
||||||
if VIRTUALIZATION
|
if VIRTUALIZATION
|
||||||
|
|
||||||
config KVM
|
config KVM
|
||||||
bool "Kernel-based Virtual Machine (KVM) support"
|
bool
|
||||||
depends on EXPERIMENTAL
|
|
||||||
select PREEMPT_NOTIFIERS
|
select PREEMPT_NOTIFIERS
|
||||||
select ANON_INODES
|
select ANON_INODES
|
||||||
|
|
||||||
|
config KVM_440
|
||||||
|
bool "KVM support for PowerPC 440 processors"
|
||||||
|
depends on EXPERIMENTAL && 44x
|
||||||
|
select KVM
|
||||||
---help---
|
---help---
|
||||||
Support hosting virtualized guest machines. You will also
|
Support running unmodified 440 guest kernels in virtual machines on
|
||||||
need to select one or more of the processor modules below.
|
440 host processors.
|
||||||
|
|
||||||
This module provides access to the hardware capabilities through
|
This module provides access to the hardware capabilities through
|
||||||
a character device node named /dev/kvm.
|
a character device node named /dev/kvm.
|
||||||
|
|
||||||
If unsure, say N.
|
If unsure, say N.
|
||||||
|
|
||||||
config KVM_440
|
|
||||||
bool "KVM support for PowerPC 440 processors"
|
|
||||||
depends on KVM && 44x
|
|
||||||
---help---
|
|
||||||
KVM can run unmodified 440 guest kernels on 440 host processors.
|
|
||||||
|
|
||||||
config KVM_TRACE
|
config KVM_TRACE
|
||||||
bool "KVM trace support"
|
bool "KVM trace support"
|
||||||
depends on KVM && MARKERS && SYSFS
|
depends on KVM && MARKERS && SYSFS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue