summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-common-tasks.rst
diff options
context:
space:
mode:
authorQuentin Schulz <foss@0leil.net>2020-09-17 01:58:59 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-17 10:09:36 +0100
commitc387f0c2543a9dd7f8eca069629ede4bb5ec5dba (patch)
treed0a7fccf9b84915862b1174ae75cd0437a60bb2d /documentation/dev-manual/dev-manual-common-tasks.rst
parent6813141743f4263e6b03fd7294f9cec4ec1a3194 (diff)
downloadpoky-c387f0c2543a9dd7f8eca069629ede4bb5ec5dba.tar.gz
sphinx: replace special quotes with single and double quotes
(From yocto-docs rev: 0aeb7a94abcef3cb3850c753dd0a243f381e6675) Signed-off-by: Quentin Schulz <foss@0leil.net> Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/dev-manual-common-tasks.rst')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.rst b/documentation/dev-manual/dev-manual-common-tasks.rst
index d3baa25162..5eb7c51644 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.rst
+++ b/documentation/dev-manual/dev-manual-common-tasks.rst
@@ -6111,7 +6111,7 @@ the existing kernel, and then inserts a new kernel:
6111 6111
6112 If you see the following error, you need to update or create a 6112 If you see the following error, you need to update or create a
6113 ~/.mtoolsrc 6113 ~/.mtoolsrc
6114 file and be sure to have the line mtools_skip_check=1 in the 6114 file and be sure to have the line "mtools_skip_check=1" in the
6115 file. Then, run the Wic command again: 6115 file. Then, run the Wic command again:
6116 :: 6116 ::
6117 6117
@@ -7157,7 +7157,7 @@ variable to specify the format:
71572. Select the desired package format as follows: 71572. Select the desired package format as follows:
7158 :: 7158 ::
7159 7159
7160 PACKAGE_CLASSES ?= package_packageformat 7160 PACKAGE_CLASSES ?= "package_packageformat"
7161 7161
7162 where packageformat can be "ipk", "rpm", 7162 where packageformat can be "ipk", "rpm",
7163 "deb", or "tar" which are the supported package formats. 7163 "deb", or "tar" which are the supported package formats.
@@ -10372,7 +10372,7 @@ debugger.
10372 an image recipe: 10372 an image recipe:
10373 :: 10373 ::
10374 10374
10375 IMAGE_INSTALL_append = gdbserver" 10375 IMAGE_INSTALL_append = " gdbserver"
10376 10376
10377 The change makes 10377 The change makes
10378 sure the ``gdbserver`` package is included. 10378 sure the ``gdbserver`` package is included.