summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/qemu.rst
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-10-27 15:09:08 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-10-28 15:48:03 +0100
commitb44fbe5b1b425b8a8c23e4f0ba80583944ab303a (patch)
tree5e1787b385f95ffaf7fa2cf5507ff2a91ef39d07 /documentation/dev-manual/qemu.rst
parent50458d923826ae96deaf799fa7ee1e0584cb57ff (diff)
downloadpoky-b44fbe5b1b425b8a8c23e4f0ba80583944ab303a.tar.gz
manuals: use references to the "Build Directory" term
Replace instances of "Build Directory" and "build directory" (when applicable) by :term:`Build Directory` as already done in most places. Doing this, fix the indentation of the paragraphs with this term. (From yocto-docs rev: dce50679242d39f133e0cde5c8483b5e69f3eb54) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/qemu.rst')
-rw-r--r--documentation/dev-manual/qemu.rst12
1 files changed, 5 insertions, 7 deletions
diff --git a/documentation/dev-manual/qemu.rst b/documentation/dev-manual/qemu.rst
index 9f4bc264a3..5a4a82ce6f 100644
--- a/documentation/dev-manual/qemu.rst
+++ b/documentation/dev-manual/qemu.rst
@@ -99,8 +99,7 @@ available. Follow these general steps to run QEMU:
99 Here are some additional examples to help illustrate further QEMU: 99 Here are some additional examples to help illustrate further QEMU:
100 100
101 - This example starts QEMU with MACHINE set to "qemux86-64". 101 - This example starts QEMU with MACHINE set to "qemux86-64".
102 Assuming a standard 102 Assuming a standard :term:`Build Directory`, ``runqemu``
103 :term:`Build Directory`, ``runqemu``
104 automatically finds the ``bzImage-qemux86-64.bin`` image file and 103 automatically finds the ``bzImage-qemux86-64.bin`` image file and
105 the ``core-image-minimal-qemux86-64-20200218002850.rootfs.ext4`` 104 the ``core-image-minimal-qemux86-64-20200218002850.rootfs.ext4``
106 (assuming the current build created a ``core-image-minimal`` 105 (assuming the current build created a ``core-image-minimal``
@@ -246,11 +245,10 @@ be a problem when QEMU is running with KVM enabled. Specifically,
246software compiled with a certain CPU feature crashes when run on a CPU 245software compiled with a certain CPU feature crashes when run on a CPU
247under KVM that does not support that feature. To work around this 246under KVM that does not support that feature. To work around this
248problem, you can override QEMU's runtime CPU setting by changing the 247problem, you can override QEMU's runtime CPU setting by changing the
249``QB_CPU_KVM`` variable in ``qemuboot.conf`` in the 248``QB_CPU_KVM`` variable in ``qemuboot.conf`` in the :term:`Build Directory`
250:term:`Build Directory` ``deploy/image`` 249``deploy/image`` directory. This setting specifies a ``-cpu`` option passed
251directory. This setting specifies a ``-cpu`` option passed into QEMU in 250into QEMU in the ``runqemu`` script. Running ``qemu -cpu help`` returns a
252the ``runqemu`` script. Running ``qemu -cpu help`` returns a list of 251list of available supported CPU types.
253available supported CPU types.
254 252
255QEMU Performance 253QEMU Performance
256================ 254================