diff options
author | Thomas Huth <thuth@redhat.com> | 2023-02-28 22:15:30 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2023-03-08 08:57:42 +0100 |
commit | 4477035ec685be4c20d1213779f7ca00e867c3b8 (patch) | |
tree | 170f07158751854ad8e0c5c2e3d1feeac3ec382b /docs | |
parent | 201aa17efd4ddd512d6a04b98847424c6178318d (diff) | |
download | qemu-4477035ec685be4c20d1213779f7ca00e867c3b8.zip qemu-4477035ec685be4c20d1213779f7ca00e867c3b8.tar.gz qemu-4477035ec685be4c20d1213779f7ca00e867c3b8.tar.bz2 |
docs/config: Set the "kvm" accelerator via "[accel]" section
Configuring the accelerator should nowadays be done via the "-accel"
command line parameter, and thus via the "[accel]" section in config
files. We also need this change for the upcoming qtests that will
use these config files, since the qtests are already using "-accel"
for setting the "qtest" accelerator and QEMU does not like mixing
"-accel ..." and "-machine accel=...".
Message-Id: <20230228211533.201837-4-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/config/mach-virt-graphical.cfg | 4 | ||||
-rw-r--r-- | docs/config/mach-virt-serial.cfg | 4 | ||||
-rw-r--r-- | docs/config/q35-emulated.cfg | 2 | ||||
-rw-r--r-- | docs/config/q35-virtio-graphical.cfg | 2 | ||||
-rw-r--r-- | docs/config/q35-virtio-serial.cfg | 2 |
5 files changed, 12 insertions, 2 deletions
diff --git a/docs/config/mach-virt-graphical.cfg b/docs/config/mach-virt-graphical.cfg index d6d31b1..eba76eb 100644 --- a/docs/config/mach-virt-graphical.cfg +++ b/docs/config/mach-virt-graphical.cfg @@ -56,9 +56,11 @@ [machine] type = "virt" - accel = "kvm" gic-version = "host" +[accel] + accel = "kvm" + [memory] size = "1024" diff --git a/docs/config/mach-virt-serial.cfg b/docs/config/mach-virt-serial.cfg index 18a7c83..324b054 100644 --- a/docs/config/mach-virt-serial.cfg +++ b/docs/config/mach-virt-serial.cfg @@ -62,9 +62,11 @@ [machine] type = "virt" - accel = "kvm" gic-version = "host" +[accel] + accel = "kvm" + [memory] size = "1024" diff --git a/docs/config/q35-emulated.cfg b/docs/config/q35-emulated.cfg index 99ac918..c8806e6 100644 --- a/docs/config/q35-emulated.cfg +++ b/docs/config/q35-emulated.cfg @@ -61,6 +61,8 @@ [machine] type = "q35" + +[accel] accel = "kvm" [memory] diff --git a/docs/config/q35-virtio-graphical.cfg b/docs/config/q35-virtio-graphical.cfg index 4207f11..148b5d2 100644 --- a/docs/config/q35-virtio-graphical.cfg +++ b/docs/config/q35-virtio-graphical.cfg @@ -55,6 +55,8 @@ [machine] type = "q35" + +[accel] accel = "kvm" [memory] diff --git a/docs/config/q35-virtio-serial.cfg b/docs/config/q35-virtio-serial.cfg index d2830ae..0232913 100644 --- a/docs/config/q35-virtio-serial.cfg +++ b/docs/config/q35-virtio-serial.cfg @@ -60,6 +60,8 @@ [machine] type = "q35" + +[accel] accel = "kvm" [memory] |