diff options
3 files changed, 13 insertions, 18 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst index 32d5b7bbcc..5edf97eaa9 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-hello.rst | |||
@@ -79,8 +79,8 @@ discussion mailing list about the BitBake build tool. | |||
79 | .. note:: | 79 | .. note:: |
80 | 80 | ||
81 | This example was inspired by and drew heavily from | 81 | This example was inspired by and drew heavily from |
82 | Mailing List post - The BitBake equivalent of "Hello, World!" | 82 | `Mailing List post - The BitBake equivalent of "Hello, World!" |
83 | . | 83 | <http://www.mail-archive.com/yocto@yoctoproject.org/msg09379.html>`_. |
84 | 84 | ||
85 | As stated earlier, the goal of this example is to eventually compile | 85 | As stated earlier, the goal of this example is to eventually compile |
86 | "Hello World". However, it is unknown what BitBake needs and what you | 86 | "Hello World". However, it is unknown what BitBake needs and what you |
@@ -277,9 +277,8 @@ Following is the complete "Hello World" example. | |||
277 | 277 | ||
278 | .. note:: | 278 | .. note:: |
279 | 279 | ||
280 | You can find additional information on layers in the " | 280 | You can find additional information on layers in the |
281 | Layers | 281 | ":ref:`bitbake-user-manual/bitbake-user-manual-intro:Layers`" section. |
282 | " section. | ||
283 | 282 | ||
284 | Minimally, you need a recipe file and a layer configuration file in | 283 | Minimally, you need a recipe file and a layer configuration file in |
285 | your layer. The configuration file needs to be in the ``conf`` | 284 | your layer. The configuration file needs to be in the ``conf`` |
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst index cea8d5ba25..c0eb118eb5 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst | |||
@@ -639,7 +639,7 @@ definitions: include test_defs.inc | |||
639 | directive does not produce an error when the file cannot be found. | 639 | directive does not produce an error when the file cannot be found. |
640 | Consequently, it is recommended that if the file you are including is | 640 | Consequently, it is recommended that if the file you are including is |
641 | expected to exist, you should use | 641 | expected to exist, you should use |
642 | require | 642 | :ref:`require <require-inclusion>` |
643 | instead of | 643 | instead of |
644 | include | 644 | include |
645 | . Doing so makes sure that an error is produced if the file cannot be | 645 | . Doing so makes sure that an error is produced if the file cannot be |
@@ -756,9 +756,7 @@ recipename do_foo: fourth | |||
756 | .. note:: | 756 | .. note:: |
757 | 757 | ||
758 | Overrides and override-style operators can be applied to any shell | 758 | Overrides and override-style operators can be applied to any shell |
759 | function, not just | 759 | function, not just :ref:`tasks <bitbake-user-manual/bitbake-user-manual-metadata:Tasks>`. |
760 | tasks | ||
761 | . | ||
762 | 760 | ||
763 | You can use the ``bitbake -e`` recipename command to view the final | 761 | You can use the ``bitbake -e`` recipename command to view the final |
764 | assembled function after all overrides have been applied. | 762 | assembled function after all overrides have been applied. |
@@ -1009,9 +1007,7 @@ Additionally, the ``do_printdate`` task becomes dependent upon the | |||
1009 | after that initial run. If you want to force the task to always be | 1007 | after that initial run. If you want to force the task to always be |
1010 | rerun for experimentation purposes, you can make BitBake always | 1008 | rerun for experimentation purposes, you can make BitBake always |
1011 | consider the task "out-of-date" by using the | 1009 | consider the task "out-of-date" by using the |
1012 | [ | 1010 | :ref:`[nostamp] <bitbake-user-manual/bitbake-user-manual-metadata:Variable Flags>` |
1013 | nostamp | ||
1014 | ] | ||
1015 | variable flag, as follows: | 1011 | variable flag, as follows: |
1016 | :: | 1012 | :: |
1017 | 1013 | ||
@@ -1082,7 +1078,7 @@ the build machine cannot influence the build. | |||
1082 | things exported or listed in its whitelist to ensure that the build | 1078 | things exported or listed in its whitelist to ensure that the build |
1083 | environment is reproducible and consistent. You can prevent this | 1079 | environment is reproducible and consistent. You can prevent this |
1084 | "cleaning" by setting the | 1080 | "cleaning" by setting the |
1085 | BB_PRESERVE_ENV | 1081 | :term:`BB_PRESERVE_ENV` |
1086 | variable. | 1082 | variable. |
1087 | 1083 | ||
1088 | Consequently, if you do want something to get passed into the build task | 1084 | Consequently, if you do want something to get passed into the build task |
@@ -1397,11 +1393,11 @@ incarnations are buildable. These features are enabled through the | |||
1397 | 1393 | ||
1398 | The mechanism for this class extension is extremely specific to the | 1394 | The mechanism for this class extension is extremely specific to the |
1399 | implementation. Usually, the recipe's | 1395 | implementation. Usually, the recipe's |
1400 | PROVIDES | 1396 | :term:`PROVIDES` |
1401 | , | 1397 | , |
1402 | PN | 1398 | :term:`PN` |
1403 | , and | 1399 | , and |
1404 | DEPENDS | 1400 | :term:`DEPENDS` |
1405 | variables would need to be modified by the extension class. For | 1401 | variables would need to be modified by the extension class. For |
1406 | specific examples, see the OE-Core | 1402 | specific examples, see the OE-Core |
1407 | native | 1403 | native |
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst index f81c01c064..d5c07e4aa9 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-ref-variables.rst | |||
@@ -484,7 +484,7 @@ overview of their function and contents. | |||
484 | .. note:: | 484 | .. note:: |
485 | 485 | ||
486 | This variable works similarly to the | 486 | This variable works similarly to the |
487 | BB_TASK_NICE_LEVEL | 487 | :term:`BB_TASK_NICE_LEVEL` |
488 | variable except with a task's I/O priorities. | 488 | variable except with a task's I/O priorities. |
489 | 489 | ||
490 | Set the variable as follows: BB_TASK_IONICE_LEVEL = "class.prio" For | 490 | Set the variable as follows: BB_TASK_IONICE_LEVEL = "class.prio" For |
@@ -764,7 +764,7 @@ overview of their function and contents. | |||
764 | The bias provided by | 764 | The bias provided by |
765 | DEFAULT_PREFERENCE | 765 | DEFAULT_PREFERENCE |
766 | is weak and is overridden by | 766 | is weak and is overridden by |
767 | BBFILE_PRIORITY | 767 | :term:`BBFILE_PRIORITY` |
768 | if that variable is different between two layers that contain | 768 | if that variable is different between two layers that contain |
769 | different versions of the same recipe. | 769 | different versions of the same recipe. |
770 | 770 | ||