diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2016-02-25 13:09:19 -0800 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2016-02-25 13:09:19 -0800 |
commit | a968d725358b1fd45022dc278bcca35fc9244686 (patch) | |
tree | 75c0145f8c4ae6a16d95e13f678593df570455db /app-emulation/qemu-init-scripts/files/qemu-conf.example | |
parent | Update the binary determination code (diff) | |
download | kvm-tools-a968d725358b1fd45022dc278bcca35fc9244686.tar.gz kvm-tools-a968d725358b1fd45022dc278bcca35fc9244686.tar.bz2 kvm-tools-a968d725358b1fd45022dc278bcca35fc9244686.zip |
Add MACHINE, CPU, ENABLE_KVM options
ENABLE_KVM replaces the DISABLE_KVM option that was present only in the init script. It did not have a corresponding conf.d option example.
MACHINE allows for the specifcation of the system to emulate.
CPU allows setting the specific cpu to emulate.
Diffstat (limited to 'app-emulation/qemu-init-scripts/files/qemu-conf.example')
-rw-r--r-- | app-emulation/qemu-init-scripts/files/qemu-conf.example | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app-emulation/qemu-init-scripts/files/qemu-conf.example b/app-emulation/qemu-init-scripts/files/qemu-conf.example index 6ccd6fc..acdebcb 100644 --- a/app-emulation/qemu-init-scripts/files/qemu-conf.example +++ b/app-emulation/qemu-init-scripts/files/qemu-conf.example @@ -81,6 +81,24 @@ DISKIMAGE=/mnt/kvm/gentoo64.qcow2 ## General settings +# The machine type to use +# see qemu help +# default is Standard PC (i440FX + PIIX, 1996) +# +#MACHINE="q35" + +# Enable/diasble kvm +# +# null value == disabled +# non null value == enabled +# +ENABLE_KVM=1 + +# cpu option +# see qemu help +# +#CPU=host + # RAM memory allocated for the virtual machine # # Defaults to 512M |