blob: 5a4a82ce6f850203d2578993ee918f1be1da7ffb [file] [log] [blame]
Andrew Geisslerf0343792020-11-18 10:42:21 -06001.. SPDX-License-Identifier: CC-BY-SA-2.0-UK
Andrew Geisslerc9f78652020-09-18 14:11:35 -05002
3*******************************
4Using the Quick EMUlator (QEMU)
5*******************************
6
7The Yocto Project uses an implementation of the Quick EMUlator (QEMU)
8Open Source project as part of the Yocto Project development "tool set".
9This chapter provides both procedures that show you how to use the Quick
10EMUlator (QEMU) and other QEMU information helpful for development
11purposes.
12
Andrew Geisslerc9f78652020-09-18 14:11:35 -050013Overview
14========
15
16Within the context of the Yocto Project, QEMU is an emulator and
17virtualization machine that allows you to run a complete image you have
18built using the Yocto Project as just another task on your build system.
19QEMU is useful for running and testing images and applications on
20supported Yocto Project architectures without having actual hardware.
21Among other things, the Yocto Project uses QEMU to run automated Quality
22Assurance (QA) tests on final images shipped with each release.
23
24.. note::
25
26 This implementation is not the same as QEMU in general.
27
28This section provides a brief reference for the Yocto Project
29implementation of QEMU.
30
31For official information and documentation on QEMU in general, see the
32following references:
33
Andrew Geissler4c19ea12020-10-27 13:52:24 -050034- `QEMU Website <https://wiki.qemu.org/Main_Page>`__\ *:* The official
Andrew Geisslerc9f78652020-09-18 14:11:35 -050035 website for the QEMU Open Source project.
36
Andrew Geissler4c19ea12020-10-27 13:52:24 -050037- `Documentation <https://wiki.qemu.org/Manual>`__\ *:* The QEMU user
Andrew Geisslerc9f78652020-09-18 14:11:35 -050038 manual.
39
Andrew Geisslerc9f78652020-09-18 14:11:35 -050040Running QEMU
41============
42
43To use QEMU, you need to have QEMU installed and initialized as well as
44have the proper artifacts (i.e. image files and root filesystems)
45available. Follow these general steps to run QEMU:
46
471. *Install QEMU:* QEMU is made available with the Yocto Project a
48 number of ways. One method is to install a Software Development Kit
Andrew Geissler09209ee2020-12-13 08:44:15 -060049 (SDK). See ":ref:`sdk-manual/intro:the qemu emulator`" section in the
Andrew Geisslerc9f78652020-09-18 14:11:35 -050050 Yocto Project Application Development and the Extensible Software
51 Development Kit (eSDK) manual for information on how to install QEMU.
52
532. *Setting Up the Environment:* How you set up the QEMU environment
54 depends on how you installed QEMU:
55
56 - If you cloned the ``poky`` repository or you downloaded and
57 unpacked a Yocto Project release tarball, you can source the build
Andrew Geisslerc926e172021-05-07 16:11:35 -050058 environment script (i.e. :ref:`structure-core-script`)::
Andrew Geisslerc9f78652020-09-18 14:11:35 -050059
Andrew Geissler95ac1b82021-03-31 14:34:31 -050060 $ cd poky
Andrew Geisslerc9f78652020-09-18 14:11:35 -050061 $ source oe-init-build-env
62
63 - If you installed a cross-toolchain, you can run the script that
64 initializes the toolchain. For example, the following commands run
Andrew Geisslerc926e172021-05-07 16:11:35 -050065 the initialization script from the default ``poky_sdk`` directory::
Andrew Geisslerc9f78652020-09-18 14:11:35 -050066
Andrew Geissler95ac1b82021-03-31 14:34:31 -050067 . poky_sdk/environment-setup-core2-64-poky-linux
Andrew Geisslerc9f78652020-09-18 14:11:35 -050068
693. *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
71 root filesystem for your target machine's architecture:
72
73 - If you have previously built an image for QEMU (e.g. ``qemux86``,
74 ``qemuarm``, and so forth), then the artifacts are in place in
75 your :term:`Build Directory`.
76
77 - If you have not built an image, you can go to the
Andrew Geissler09209ee2020-12-13 08:44:15 -060078 :yocto_dl:`machines/qemu </releases/yocto/yocto-&DISTRO;/machines/qemu/>` area and download a
Andrew Geisslerc9f78652020-09-18 14:11:35 -050079 pre-built image that matches your architecture and can be run on
80 QEMU.
81
Andrew Geissler09209ee2020-12-13 08:44:15 -060082 See the ":ref:`sdk-manual/appendix-obtain:extracting the root filesystem`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -050083 section in the Yocto Project Application Development and the
84 Extensible Software Development Kit (eSDK) manual for information on
85 how to extract a root filesystem.
86
Andrew Geisslerc926e172021-05-07 16:11:35 -0500874. *Run QEMU:* The basic ``runqemu`` command syntax is as follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -050088
89 $ runqemu [option ] [...]
90
91 Based on what you provide on the command
92 line, ``runqemu`` does a good job of figuring out what you are trying
93 to do. For example, by default, QEMU looks for the most recently
94 built image according to the timestamp when it needs to look for an
95 image. Minimally, through the use of options, you must provide either
96 a machine name, a virtual machine image (``*wic.vmdk``), or a kernel
97 image (``*.bin``).
98
99 Here are some additional examples to help illustrate further QEMU:
100
101 - This example starts QEMU with MACHINE set to "qemux86-64".
Patrick Williams2390b1b2022-11-03 13:47:49 -0500102 Assuming a standard :term:`Build Directory`, ``runqemu``
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500103 automatically finds the ``bzImage-qemux86-64.bin`` image file and
104 the ``core-image-minimal-qemux86-64-20200218002850.rootfs.ext4``
105 (assuming the current build created a ``core-image-minimal``
106 image).
107
108 .. note::
109
110 When more than one image with the same name exists, QEMU finds
111 and uses the most recently built image according to the
112 timestamp.
113
114 ::
115
116 $ runqemu qemux86-64
117
118 - This example produces the exact same results as the previous
119 example. This command, however, specifically provides the image
120 and root filesystem type.
121 ::
122
123 $ runqemu qemux86-64 core-image-minimal ext4
124
Patrick Williams2194f502022-10-16 14:26:09 -0500125 - This example specifies to boot an :term:`Initramfs` image and to
126 enable audio in QEMU. For this case, ``runqemu`` sets the internal
127 variable ``FSTYPE`` to ``cpio.gz``. Also, for audio to be enabled,
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500128 an appropriate driver must be installed (see the previous
129 description for the ``audio`` option for more information).
130 ::
131
132 $ runqemu qemux86-64 ramfs audio
133
134 - This example does not provide enough information for QEMU to
135 launch. While the command does provide a root filesystem type, it
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500136 must also minimally provide a `MACHINE`, `KERNEL`, or `VM` option.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500137 ::
138
139 $ runqemu ext4
140
141 - This example specifies to boot a virtual machine image
142 (``.wic.vmdk`` file). From the ``.wic.vmdk``, ``runqemu``
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500143 determines the QEMU architecture (`MACHINE`) to be "qemux86-64" and
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500144 the root filesystem type to be "vmdk".
145 ::
146
147 $ runqemu /home/scott-lenovo/vm/core-image-minimal-qemux86-64.wic.vmdk
148
149Switching Between Consoles
150==========================
151
152When booting or running QEMU, you can switch between supported consoles
153by using Ctrl+Alt+number. For example, Ctrl+Alt+3 switches you to the
154serial console as long as that console is enabled. Being able to switch
155consoles is helpful, for example, if the main QEMU console breaks for
156some reason.
157
158.. note::
159
160 Usually, "2" gets you to the main console and "3" gets you to the
161 serial console.
162
163Removing the Splash Screen
164==========================
165
166You can remove the splash screen when QEMU is booting by using Alt+left.
167Removing the splash screen allows you to see what is happening in the
168background.
169
170Disabling the Cursor Grab
171=========================
172
173The default QEMU integration captures the cursor within the main window.
174It does this since standard mouse devices only provide relative input
175and not absolute coordinates. You then have to break out of the grab
176using the "Ctrl+Alt" key combination. However, the Yocto Project's
177integration of QEMU enables the wacom USB touch pad driver by default to
178allow input of absolute coordinates. This default means that the mouse
179can enter and leave the main window without the grab taking effect
180leading to a better user experience.
181
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500182Running Under a Network File System (NFS) Server
183================================================
184
185One method for running QEMU is to run it on an NFS server. This is
186useful when you need to access the same file system from both the build
187and the emulated system at the same time. It is also worth noting that
188the system does not need root privileges to run. It uses a user space
189NFS server to avoid that. Follow these steps to set up for running QEMU
190using an NFS server.
191
1921. *Extract a Root Filesystem:* Once you are able to run QEMU in your
193 environment, you can use the ``runqemu-extract-sdk`` script, which is
194 located in the ``scripts`` directory along with the ``runqemu``
195 script.
196
197 The ``runqemu-extract-sdk`` takes a root filesystem tarball and
198 extracts it into a location that you specify. Here is an example that
199 takes a file system and extracts it to a directory named
200 ``test-nfs``:
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500201
202 .. code-block:: none
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500203
204 runqemu-extract-sdk ./tmp/deploy/images/qemux86-64/core-image-sato-qemux86-64.tar.bz2 test-nfs
205
2062. *Start QEMU:* Once you have extracted the file system, you can run
207 ``runqemu`` normally with the additional location of the file system.
208 You can then also make changes to the files within ``./test-nfs`` and
209 see those changes appear in the image in real time. Here is an
210 example using the ``qemux86`` image:
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500211
212 .. code-block:: none
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500213
214 runqemu qemux86-64 ./test-nfs
215
216.. note::
217
218 Should you need to start, stop, or restart the NFS share, you can use
219 the following commands:
220
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700221 - To start the NFS share::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500222
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500223 runqemu-export-rootfs start file-system-location
224
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700225 - To stop the NFS share::
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500226
227 runqemu-export-rootfs stop file-system-location
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500228
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700229 - To restart the NFS share::
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500230
231 runqemu-export-rootfs restart file-system-location
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500232
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500233QEMU CPU Compatibility Under KVM
234================================
235
236By default, the QEMU build compiles for and targets 64-bit and x86 Intel
237Core2 Duo processors and 32-bit x86 Intel Pentium II processors. QEMU
238builds for and targets these CPU types because they display a broad
239range of CPU feature compatibility with many commonly used CPUs.
240
241Despite this broad range of compatibility, the CPUs could support a
242feature that your host CPU does not support. Although this situation is
243not a problem when QEMU uses software emulation of the feature, it can
244be a problem when QEMU is running with KVM enabled. Specifically,
245software compiled with a certain CPU feature crashes when run on a CPU
246under KVM that does not support that feature. To work around this
247problem, you can override QEMU's runtime CPU setting by changing the
Patrick Williams2390b1b2022-11-03 13:47:49 -0500248``QB_CPU_KVM`` variable in ``qemuboot.conf`` in the :term:`Build Directory`
249``deploy/image`` directory. This setting specifies a ``-cpu`` option passed
250into QEMU in the ``runqemu`` script. Running ``qemu -cpu help`` returns a
251list of available supported CPU types.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500252
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500253QEMU Performance
254================
255
256Using QEMU to emulate your hardware can result in speed issues depending
257on the target and host architecture mix. For example, using the
258``qemux86`` image in the emulator on an Intel-based 32-bit (x86) host
259machine is fast because the target and host architectures match. On the
260other hand, using the ``qemuarm`` image on the same Intel-based host can
261be slower. But, you still achieve faithful emulation of ARM-specific
262issues.
263
264To speed things up, the QEMU images support using ``distcc`` to call a
265cross-compiler outside the emulated system. If you used ``runqemu`` to
266start QEMU, and the ``distccd`` application is present on the host
267system, any BitBake cross-compiling toolchain available from the build
268system is automatically used from within QEMU simply by calling
269``distcc``. You can accomplish this by defining the cross-compiler
270variable (e.g. ``export CC="distcc"``). Alternatively, if you are using
271a suitable SDK image or the appropriate stand-alone toolchain is
272present, the toolchain is also automatically used.
273
274.. note::
275
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700276 There are several mechanisms to connect to the system running
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500277 on the QEMU emulator:
278
279 - QEMU provides a framebuffer interface that makes standard consoles
280 available.
281
282 - Generally, headless embedded devices have a serial port. If so,
283 you can configure the operating system of the running image to use
284 that port to run a console. The connection uses standard IP
285 networking.
286
William A. Kennington IIIac69b482021-06-02 12:28:27 -0700287 - SSH servers are available in some QEMU images. The ``core-image-sato``
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500288 QEMU image has a Dropbear secure shell (SSH) server that runs with
289 the root password disabled. The ``core-image-full-cmdline`` and
290 ``core-image-lsb`` QEMU images have OpenSSH instead of Dropbear.
291 Including these SSH servers allow you to use standard ``ssh`` and
292 ``scp`` commands. The ``core-image-minimal`` QEMU image, however,
293 contains no SSH server.
294
295 - You can use a provided, user-space NFS server to boot the QEMU
296 session using a local copy of the root filesystem on the host. In
297 order to make this connection, you must extract a root filesystem
298 tarball by using the ``runqemu-extract-sdk`` command. After
299 running the command, you must then point the ``runqemu`` script to
300 the extracted directory instead of a root filesystem image file.
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500301 See the
302 ":ref:`dev-manual/qemu:running under a network file system (nfs) server`"
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500303 section for more information.
304
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500305QEMU Command-Line Syntax
306========================
307
Andrew Geisslerc926e172021-05-07 16:11:35 -0500308The basic ``runqemu`` command syntax is as follows::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500309
310 $ runqemu [option ] [...]
311
312Based on what you provide on the command line, ``runqemu`` does a
313good job of figuring out what you are trying to do. For example, by
314default, QEMU looks for the most recently built image according to the
315timestamp when it needs to look for an image. Minimally, through the use
316of options, you must provide either a machine name, a virtual machine
317image (``*wic.vmdk``), or a kernel image (``*.bin``).
318
Andrew Geisslerc926e172021-05-07 16:11:35 -0500319Following is the command-line help output for the ``runqemu`` command::
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500320
321 $ runqemu --help
322
323 Usage: you can run this script with any valid combination
324 of the following environment variables (in any order):
325 KERNEL - the kernel image file to use
326 ROOTFS - the rootfs image file or nfsroot directory to use
327 MACHINE - the machine name (optional, autodetected from KERNEL filename if unspecified)
328 Simplified QEMU command-line options can be passed with:
329 nographic - disable video console
330 serial - enable a serial console on /dev/ttyS0
331 slirp - enable user networking, no root privileges is required
332 kvm - enable KVM when running x86/x86_64 (VT-capable CPU required)
333 kvm-vhost - enable KVM with vhost when running x86/x86_64 (VT-capable CPU required)
334 publicvnc - enable a VNC server open to all hosts
335 audio - enable audio
336 [*/]ovmf* - OVMF firmware file or base name for booting with UEFI
337 tcpserial=<port> - specify tcp serial port number
338 biosdir=<dir> - specify custom bios dir
339 biosfilename=<filename> - specify bios filename
340 qemuparams=<xyz> - specify custom parameters to QEMU
341 bootparams=<xyz> - specify custom kernel parameters during boot
342 help, -h, --help: print this text
343
344 Examples:
345 runqemu
346 runqemu qemuarm
347 runqemu tmp/deploy/images/qemuarm
348 runqemu tmp/deploy/images/qemux86/<qemuboot.conf>
349 runqemu qemux86-64 core-image-sato ext4
350 runqemu qemux86-64 wic-image-minimal wic
351 runqemu path/to/bzImage-qemux86.bin path/to/nfsrootdir/ serial
352 runqemu qemux86 iso/hddimg/wic.vmdk/wic.qcow2/wic.vdi/ramfs/cpio.gz...
353 runqemu qemux86 qemuparams="-m 256"
354 runqemu qemux86 bootparams="psplash=false"
355 runqemu path/to/<image>-<machine>.wic
356 runqemu path/to/<image>-<machine>.wic.vmdk
357
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500358``runqemu`` Command-Line Options
359================================
360
361Following is a description of ``runqemu`` options you can provide on the
362command line:
363
364.. note::
365
366 If you do provide some "illegal" option combination or perhaps you do
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500367 not provide enough in the way of options, ``runqemu``
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500368 provides appropriate error messaging to help you correct the problem.
369
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500370- `QEMUARCH`: The QEMU machine architecture, which must be "qemuarm",
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500371 "qemuarm64", "qemumips", "qemumips64", "qemuppc", "qemux86", or
372 "qemux86-64".
373
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500374- `VM`: The virtual machine image, which must be a ``.wic.vmdk``
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500375 file. Use this option when you want to boot a ``.wic.vmdk`` image.
376 The image filename you provide must contain one of the following
377 strings: "qemux86-64", "qemux86", "qemuarm", "qemumips64",
378 "qemumips", "qemuppc", or "qemush4".
379
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500380- `ROOTFS`: A root filesystem that has one of the following filetype
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500381 extensions: "ext2", "ext3", "ext4", "jffs2", "nfs", or "btrfs". If
382 the filename you provide for this option uses "nfs", it must provide
383 an explicit root filesystem path.
384
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500385- `KERNEL`: A kernel image, which is a ``.bin`` file. When you provide a
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500386 ``.bin`` file, ``runqemu`` detects it and assumes the file is a
387 kernel image.
388
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500389- `MACHINE`: The architecture of the QEMU machine, which must be one of
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500390 the following: "qemux86", "qemux86-64", "qemuarm", "qemuarm64",
391 "qemumips", "qemumips64", or "qemuppc". The MACHINE and QEMUARCH
392 options are basically identical. If you do not provide a MACHINE
393 option, ``runqemu`` tries to determine it based on other options.
394
Patrick Williams2194f502022-10-16 14:26:09 -0500395- ``ramfs``: Indicates you are booting an :term:`Initramfs`
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500396 image, which means the ``FSTYPE`` is ``cpio.gz``.
397
398- ``iso``: Indicates you are booting an ISO image, which means the
399 ``FSTYPE`` is ``.iso``.
400
401- ``nographic``: Disables the video console, which sets the console to
402 "ttys0". This option is useful when you have logged into a server and
403 you do not want to disable forwarding from the X Window System (X11)
404 to your workstation or laptop.
405
406- ``serial``: Enables a serial console on ``/dev/ttyS0``.
407
408- ``biosdir``: Establishes a custom directory for BIOS, VGA BIOS and
409 keymaps.
410
411- ``biosfilename``: Establishes a custom BIOS name.
412
413- ``qemuparams=\"xyz\"``: Specifies custom QEMU parameters. Use this
414 option to pass options other than the simple "kvm" and "serial"
415 options.
416
417- ``bootparams=\"xyz\"``: Specifies custom boot parameters for the
418 kernel.
419
420- ``audio``: Enables audio in QEMU. The MACHINE option must be either
421 "qemux86" or "qemux86-64" in order for audio to be enabled.
422 Additionally, the ``snd_intel8x0`` or ``snd_ens1370`` driver must be
423 installed in linux guest.
424
425- ``slirp``: Enables "slirp" networking, which is a different way of
426 networking that does not need root access but also is not as easy to
427 use or comprehensive as the default.
428
429- ``kvm``: Enables KVM when running "qemux86" or "qemux86-64" QEMU
430 architectures. For KVM to work, all the following conditions must be
431 met:
432
433 - Your MACHINE must be either qemux86" or "qemux86-64".
434
435 - Your build host has to have the KVM modules installed, which are
436 ``/dev/kvm``.
437
438 - The build host ``/dev/kvm`` directory has to be both writable and
439 readable.
440
441- ``kvm-vhost``: Enables KVM with VHOST support when running "qemux86"
442 or "qemux86-64" QEMU architectures. For KVM with VHOST to work, the
443 following conditions must be met:
444
Andrew Geissler3b8a17c2021-04-15 15:55:55 -0500445 - ``kvm`` option conditions defined above must be met.
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500446
447 - Your build host has to have virtio net device, which are
448 ``/dev/vhost-net``.
449
450 - The build host ``/dev/vhost-net`` directory has to be either
451 readable or writable and "slirp-enabled".
452
453- ``publicvnc``: Enables a VNC server open to all hosts.