* [PATCH 1/4] ref-manual: drop the full stop from the QB_SMP example
@ 2026-08-31 2:12 Trevor Woerner
2026-08-31 2:12 ` [PATCH 2/4] ref-manual: fix a typo in the QB_SMP description Trevor Woerner
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Trevor Woerner @ 2026-08-31 2:12 UTC (permalink / raw)
To: docs
The full stop belongs to the sentence, not to the value. BitBake rejects
the line as printed.
AI-Generated: codex/claude opus 5 (xhigh)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
documentation/ref-manual/variables.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index ae9cbfddf906..95454698f969 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -8266,7 +8266,7 @@ system and gives an overview of their function and contents.
For example::
- QB_SMP = "-smp 8".
+ QB_SMP = "-smp 8"
:term:`QB_TAP_NAMESERVER`
--
2.50.0.173.g8b6f19ccfc3a
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/4] ref-manual: fix a typo in the QB_SMP description
2026-08-31 2:12 [PATCH 1/4] ref-manual: drop the full stop from the QB_SMP example Trevor Woerner
@ 2026-08-31 2:12 ` Trevor Woerner
2026-08-31 2:12 ` [PATCH 3/4] dev-manual: quote the values in two recipe examples Trevor Woerner
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Trevor Woerner @ 2026-08-31 2:12 UTC (permalink / raw)
To: docs
AI-Generated: codex/claude opus 5 (xhigh)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
documentation/ref-manual/variables.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index 95454698f969..fd95a9ad4796 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -8261,7 +8261,7 @@ system and gives an overview of their function and contents.
:term:`QB_SMP`
When using ``runqemu``, the :term:`QB_SMP` variable controls
- amount of CPU cores made availalble inside the QEMU guest, each mapped to
+ amount of CPU cores made available inside the QEMU guest, each mapped to
a thread on the host.
For example::
--
2.50.0.173.g8b6f19ccfc3a
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/4] dev-manual: quote the values in two recipe examples
2026-08-31 2:12 [PATCH 1/4] ref-manual: drop the full stop from the QB_SMP example Trevor Woerner
2026-08-31 2:12 ` [PATCH 2/4] ref-manual: fix a typo in the QB_SMP description Trevor Woerner
@ 2026-08-31 2:12 ` Trevor Woerner
2026-08-31 2:12 ` [PATCH 4/4] toaster-manual: spell the json code-block language in lower case Trevor Woerner
2026-09-07 8:30 ` [PATCH 1/4] ref-manual: drop the full stop from the QB_SMP example Antonin Godard
3 siblings, 0 replies; 5+ messages in thread
From: Trevor Woerner @ 2026-08-31 2:12 UTC (permalink / raw)
To: docs
Both fail to parse.
AI-Generated: codex/claude opus 5 (xhigh)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
documentation/dev-manual/new-recipe.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/documentation/dev-manual/new-recipe.rst b/documentation/dev-manual/new-recipe.rst
index d1c863117259..3f360597f998 100644
--- a/documentation/dev-manual/new-recipe.rst
+++ b/documentation/dev-manual/new-recipe.rst
@@ -1055,7 +1055,7 @@ correctly trigger an upgrade.
In order to ensure the versions compare properly, the recommended
convention is to use a tilde (``~``) character as follows::
- PV = 0.8.16~rc1
+ PV = "0.8.16~rc1"
This way ``0.8.16~rc1`` sorts before ``0.8.16``. See the
":ref:`contributor-guide/recipe-style-guide:version policy`" section in the
@@ -1656,7 +1656,7 @@ in the BitBake User Manual.
You indicate Python code using the ``${@python_code}`` syntax for the
variable assignment::
- SRC_URI = "ftp://ftp.info-zip.org/pub/infozip/src/zip${@d.getVar('PV',1).replace('.', '')}.tgz
+ SRC_URI = "ftp://ftp.info-zip.org/pub/infozip/src/zip${@d.getVar('PV',1).replace('.', '')}.tgz"
- *Shell Function Syntax:* Write shell functions as if you were writing
a shell script when you describe a list of actions to take. You
--
2.50.0.173.g8b6f19ccfc3a
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 4/4] toaster-manual: spell the json code-block language in lower case
2026-08-31 2:12 [PATCH 1/4] ref-manual: drop the full stop from the QB_SMP example Trevor Woerner
2026-08-31 2:12 ` [PATCH 2/4] ref-manual: fix a typo in the QB_SMP description Trevor Woerner
2026-08-31 2:12 ` [PATCH 3/4] dev-manual: quote the values in two recipe examples Trevor Woerner
@ 2026-08-31 2:12 ` Trevor Woerner
2026-09-07 8:30 ` [PATCH 1/4] ref-manual: drop the full stop from the QB_SMP example Antonin Godard
3 siblings, 0 replies; 5+ messages in thread
From: Trevor Woerner @ 2026-08-31 2:12 UTC (permalink / raw)
To: docs
Pygments resolves either spelling, so nothing renders differently. Every
other block in the documentation uses the lower-case form.
AI-Generated: codex/claude opus 5 (xhigh)
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
documentation/toaster-manual/reference.rst | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/documentation/toaster-manual/reference.rst b/documentation/toaster-manual/reference.rst
index 3050b5d0f55c..bc065a446a1c 100644
--- a/documentation/toaster-manual/reference.rst
+++ b/documentation/toaster-manual/reference.rst
@@ -408,7 +408,7 @@ itemizes all builds in progress. This file includes the time in seconds since
each respective build started as well as the progress of the cloning, parsing,
and task execution. Here is sample output for a build in progress:
-.. code-block:: JSON
+.. code-block:: json
{"count": 1,
"building": [
@@ -442,7 +442,7 @@ Be sure to provide values for host and port. The output is a JSON file that
itemizes all complete builds, and includes build summary information. Here
is sample output for a completed build:
-.. code-block:: JSON
+.. code-block:: json
{"count": 1,
"builds": [
@@ -481,7 +481,7 @@ The output is a JSON file that itemizes the specific build and includes
build summary information. Here is sample output for a specific
build:
-.. code-block:: JSON
+.. code-block:: json
{"build":
{"distro": "poky",
--
2.50.0.173.g8b6f19ccfc3a
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/4] ref-manual: drop the full stop from the QB_SMP example
2026-08-31 2:12 [PATCH 1/4] ref-manual: drop the full stop from the QB_SMP example Trevor Woerner
` (2 preceding siblings ...)
2026-08-31 2:12 ` [PATCH 4/4] toaster-manual: spell the json code-block language in lower case Trevor Woerner
@ 2026-09-07 8:30 ` Antonin Godard
3 siblings, 0 replies; 5+ messages in thread
From: Antonin Godard @ 2026-09-07 8:30 UTC (permalink / raw)
To: docs, Trevor Woerner; +Cc: Antonin Godard
Applied, thanks!
[1/4] ref-manual: drop the full stop from the QB_SMP example
commit: 45ad427bc86566d47ff5213e9826a8e81cef412f
[2/4] ref-manual: fix a typo in the QB_SMP description
commit: 1c923f5f6f3f9b2df6285d07bef56e95f05daf4f
[3/4] dev-manual: quote the values in two recipe examples
commit: fc81d055ab85d2d55d440f20f442b552d1374a26
[4/4] toaster-manual: spell the json code-block language in lower case
commit: 3bc15cadd98b071e16cd4a806f284cbfc94fd408
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-09-07 8:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-31 2:12 [PATCH 1/4] ref-manual: drop the full stop from the QB_SMP example Trevor Woerner
2026-08-31 2:12 ` [PATCH 2/4] ref-manual: fix a typo in the QB_SMP description Trevor Woerner
2026-08-31 2:12 ` [PATCH 3/4] dev-manual: quote the values in two recipe examples Trevor Woerner
2026-08-31 2:12 ` [PATCH 4/4] toaster-manual: spell the json code-block language in lower case Trevor Woerner
2026-09-07 8:30 ` [PATCH 1/4] ref-manual: drop the full stop from the QB_SMP example Antonin Godard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox