summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/qemu.rst
diff options
context:
space:
mode:
authorAntonin Godard <antonin.godard@bootlin.com>2025-07-29 11:56:52 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-08-08 23:41:11 +0100
commit89fd9dd17a6450a1a9250e3f8ba212e9c3afd3f2 (patch)
tree5615030177498909da83965c1fcb67d046798a95 /documentation/dev-manual/qemu.rst
parente9042fee7188021130efed1b2db31eac96c50f5b (diff)
downloadpoky-89fd9dd17a6450a1a9250e3f8ba212e9c3afd3f2.tar.gz
docs-wide: fix space around equal assignments
Since commit 24772dd2ae6c ("parse/ConfHandler: Add warning for deprecated whitespace usage") in BitBake, a warning is printed when there are no spaces around an `=` assignment. Adjust the documentation to show good examples only. (From yocto-docs rev: 77ce1544dd793036b1135817c02e090138fe6407) Signed-off-by: Antonin Godard <antonin.godard@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.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/dev-manual/qemu.rst b/documentation/dev-manual/qemu.rst
index 92c93a82ab..9e0b8b8136 100644
--- a/documentation/dev-manual/qemu.rst
+++ b/documentation/dev-manual/qemu.rst
@@ -424,9 +424,9 @@ command line:
424 in the :term:`Build Directory` ``deploy/image`` directory. 424 in the :term:`Build Directory` ``deploy/image`` directory.
425 Examples:: 425 Examples::
426 426
427 QB_SLIRP_OPT="-netdev user,id=net0,hostfwd=tcp::8080-:80" 427 QB_SLIRP_OPT = "-netdev user,id=net0,hostfwd=tcp::8080-:80"
428 428
429 QB_SLIRP_OPT="-netdev user,id=net0,hostfwd=tcp::8080-:80,hostfwd=tcp::2222-:22" 429 QB_SLIRP_OPT = "-netdev user,id=net0,hostfwd=tcp::8080-:80,hostfwd=tcp::2222-:22"
430 430
431 The first example forwards TCP port 80 from the emulated system to 431 The first example forwards TCP port 80 from the emulated system to
432 port 8080 (or the next free port) on the host system, 432 port 8080 (or the next free port) on the host system,