summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/qemu.rst
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-12-09 19:01:55 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-18 10:41:21 +0000
commit6846d4d00bc3a9d4e188ad9c8cfdf6e45cd1ba06 (patch)
tree6a59e9936ac9f2ca063d4fc8a5c4d9ecc9492769 /documentation/dev-manual/qemu.rst
parent474e071608c7c1c97e9dafde810aef5630c716e7 (diff)
downloadpoky-6846d4d00bc3a9d4e188ad9c8cfdf6e45cd1ba06.tar.gz
manuals: define proper numbered lists
Using "#." instead of "1.", "2.", "3.", etc. (From yocto-docs rev: 11c2585acd0fa6c330702af2359ce5a9e47cde1f) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reported-by: Quentin Schulz <foss+yocto@0leil.net> 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, 6 insertions, 6 deletions
diff --git a/documentation/dev-manual/qemu.rst b/documentation/dev-manual/qemu.rst
index 084e67580d..d431ea4b99 100644
--- a/documentation/dev-manual/qemu.rst
+++ b/documentation/dev-manual/qemu.rst
@@ -44,13 +44,13 @@ To use QEMU, you need to have QEMU installed and initialized as well as
44have the proper artifacts (i.e. image files and root filesystems) 44have the proper artifacts (i.e. image files and root filesystems)
45available. Follow these general steps to run QEMU: 45available. Follow these general steps to run QEMU:
46 46
471. *Install QEMU:* QEMU is made available with the Yocto Project a 47#. *Install QEMU:* QEMU is made available with the Yocto Project a
48 number of ways. One method is to install a Software Development Kit 48 number of ways. One method is to install a Software Development Kit
49 (SDK). See ":ref:`sdk-manual/intro:the qemu emulator`" section in the 49 (SDK). See ":ref:`sdk-manual/intro:the qemu emulator`" section in the
50 Yocto Project Application Development and the Extensible Software 50 Yocto Project Application Development and the Extensible Software
51 Development Kit (eSDK) manual for information on how to install QEMU. 51 Development Kit (eSDK) manual for information on how to install QEMU.
52 52
532. *Setting Up the Environment:* How you set up the QEMU environment 53#. *Setting Up the Environment:* How you set up the QEMU environment
54 depends on how you installed QEMU: 54 depends on how you installed QEMU:
55 55
56 - If you cloned the ``poky`` repository or you downloaded and 56 - If you cloned the ``poky`` repository or you downloaded and
@@ -66,7 +66,7 @@ available. Follow these general steps to run QEMU:
66 66
67 . poky_sdk/environment-setup-core2-64-poky-linux 67 . poky_sdk/environment-setup-core2-64-poky-linux
68 68
693. *Ensure the Artifacts are in Place:* You need to be sure you have a 69#. *Ensure the Artifacts are in Place:* You need to be sure you have a
70 pre-built kernel that will boot in QEMU. You also need the target 70 pre-built kernel that will boot in QEMU. You also need the target
71 root filesystem for your target machine's architecture: 71 root filesystem for your target machine's architecture:
72 72
@@ -84,7 +84,7 @@ available. Follow these general steps to run QEMU:
84 Extensible Software Development Kit (eSDK) manual for information on 84 Extensible Software Development Kit (eSDK) manual for information on
85 how to extract a root filesystem. 85 how to extract a root filesystem.
86 86
874. *Run QEMU:* The basic ``runqemu`` command syntax is as follows:: 87#. *Run QEMU:* The basic ``runqemu`` command syntax is as follows::
88 88
89 $ runqemu [option ] [...] 89 $ runqemu [option ] [...]
90 90
@@ -184,7 +184,7 @@ the system does not need root privileges to run. It uses a user space
184NFS server to avoid that. Follow these steps to set up for running QEMU 184NFS server to avoid that. Follow these steps to set up for running QEMU
185using an NFS server. 185using an NFS server.
186 186
1871. *Extract a Root Filesystem:* Once you are able to run QEMU in your 187#. *Extract a Root Filesystem:* Once you are able to run QEMU in your
188 environment, you can use the ``runqemu-extract-sdk`` script, which is 188 environment, you can use the ``runqemu-extract-sdk`` script, which is
189 located in the ``scripts`` directory along with the ``runqemu`` 189 located in the ``scripts`` directory along with the ``runqemu``
190 script. 190 script.
@@ -198,7 +198,7 @@ using an NFS server.
198 198
199 runqemu-extract-sdk ./tmp/deploy/images/qemux86-64/core-image-sato-qemux86-64.tar.bz2 test-nfs 199 runqemu-extract-sdk ./tmp/deploy/images/qemux86-64/core-image-sato-qemux86-64.tar.bz2 test-nfs
200 200
2012. *Start QEMU:* Once you have extracted the file system, you can run 201#. *Start QEMU:* Once you have extracted the file system, you can run
202 ``runqemu`` normally with the additional location of the file system. 202 ``runqemu`` normally with the additional location of the file system.
203 You can then also make changes to the files within ``./test-nfs`` and 203 You can then also make changes to the files within ``./test-nfs`` and
204 see those changes appear in the image in real time. Here is an 204 see those changes appear in the image in real time. Here is an