summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/qemu.rst
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-12-08 10:25:59 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-18 10:41:21 +0000
commit01e5d22507e57c66452f14610ee8eb3d66ac9d71 (patch)
tree7241fa93a3a0d11db32d042e5d70a750132ab0a1 /documentation/dev-manual/qemu.rst
parent8b812b29c4b13ba028c0d66f73a6599a988486d5 (diff)
downloadpoky-01e5d22507e57c66452f14610ee8eb3d66ac9d71.tar.gz
manuals: fix double colons
Fixing double colons appearing alone on a line, while they could be put at the end of the previous line. Sometimes placing a note after the quoted text to avoid such a situation. It's more natural too not to have a note between the introduction text and the quoted section. (From yocto-docs rev: fb054622f5119444eb947fe580253f37e0d872c6) 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.rst20
1 files changed, 7 insertions, 13 deletions
diff --git a/documentation/dev-manual/qemu.rst b/documentation/dev-manual/qemu.rst
index 504fcbdd8d..084e67580d 100644
--- a/documentation/dev-manual/qemu.rst
+++ b/documentation/dev-manual/qemu.rst
@@ -103,7 +103,9 @@ available. Follow these general steps to run QEMU:
103 automatically finds the ``bzImage-qemux86-64.bin`` image file and 103 automatically finds the ``bzImage-qemux86-64.bin`` image file and
104 the ``core-image-minimal-qemux86-64-20200218002850.rootfs.ext4`` 104 the ``core-image-minimal-qemux86-64-20200218002850.rootfs.ext4``
105 (assuming the current build created a ``core-image-minimal`` 105 (assuming the current build created a ``core-image-minimal``
106 image). 106 image)::
107
108 $ runqemu qemux86-64
107 109
108 .. note:: 110 .. note::
109 111
@@ -111,14 +113,9 @@ available. Follow these general steps to run QEMU:
111 and uses the most recently built image according to the 113 and uses the most recently built image according to the
112 timestamp. 114 timestamp.
113 115
114 ::
115
116 $ runqemu qemux86-64
117
118 - This example produces the exact same results as the previous 116 - This example produces the exact same results as the previous
119 example. This command, however, specifically provides the image 117 example. This command, however, specifically provides the image
120 and root filesystem type. 118 and root filesystem type::
121 ::
122 119
123 $ runqemu qemux86-64 core-image-minimal ext4 120 $ runqemu qemux86-64 core-image-minimal ext4
124 121
@@ -127,23 +124,20 @@ available. Follow these general steps to run QEMU:
127 variable ``FSTYPE`` to ``cpio.gz``. Also, for audio to be enabled, 124 variable ``FSTYPE`` to ``cpio.gz``. Also, for audio to be enabled,
128 an appropriate driver must be installed (see the ``audio`` option 125 an appropriate driver must be installed (see the ``audio`` option
129 in :ref:`dev-manual/qemu:\`\`runqemu\`\` command-line options` 126 in :ref:`dev-manual/qemu:\`\`runqemu\`\` command-line options`
130 for more information). 127 for more information)::
131 ::
132 128
133 $ runqemu qemux86-64 ramfs audio 129 $ runqemu qemux86-64 ramfs audio
134 130
135 - This example does not provide enough information for QEMU to 131 - This example does not provide enough information for QEMU to
136 launch. While the command does provide a root filesystem type, it 132 launch. While the command does provide a root filesystem type, it
137 must also minimally provide a `MACHINE`, `KERNEL`, or `VM` option. 133 must also minimally provide a `MACHINE`, `KERNEL`, or `VM` option::
138 ::
139 134
140 $ runqemu ext4 135 $ runqemu ext4
141 136
142 - This example specifies to boot a virtual machine image 137 - This example specifies to boot a virtual machine image
143 (``.wic.vmdk`` file). From the ``.wic.vmdk``, ``runqemu`` 138 (``.wic.vmdk`` file). From the ``.wic.vmdk``, ``runqemu``
144 determines the QEMU architecture (`MACHINE`) to be "qemux86-64" and 139 determines the QEMU architecture (`MACHINE`) to be "qemux86-64" and
145 the root filesystem type to be "vmdk". 140 the root filesystem type to be "vmdk"::
146 ::
147 141
148 $ runqemu /home/scott-lenovo/vm/core-image-minimal-qemux86-64.wic.vmdk 142 $ runqemu /home/scott-lenovo/vm/core-image-minimal-qemux86-64.wic.vmdk
149 143