diff options
Diffstat (limited to 'documentation/dev-manual/common-tasks.rst')
-rw-r--r-- | documentation/dev-manual/common-tasks.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/dev-manual/common-tasks.rst b/documentation/dev-manual/common-tasks.rst index 34e978dde1..88d826f33a 100644 --- a/documentation/dev-manual/common-tasks.rst +++ b/documentation/dev-manual/common-tasks.rst | |||
@@ -465,7 +465,7 @@ have to manually merge changes as they occur. | |||
465 | When you create an append file, you must use the same root name as the | 465 | When you create an append file, you must use the same root name as the |
466 | corresponding recipe file. For example, the append file | 466 | corresponding recipe file. For example, the append file |
467 | ``someapp_3.1.bbappend`` must apply to ``someapp_3.1.bb``. This | 467 | ``someapp_3.1.bbappend`` must apply to ``someapp_3.1.bb``. This |
468 | means the original recipe and append file names are version | 468 | means the original recipe and append filenames are version |
469 | number-specific. If the corresponding recipe is renamed to update to a | 469 | number-specific. If the corresponding recipe is renamed to update to a |
470 | newer version, you must also rename and possibly update the | 470 | newer version, you must also rename and possibly update the |
471 | corresponding ``.bbappend`` as well. During the build process, BitBake | 471 | corresponding ``.bbappend`` as well. During the build process, BitBake |
@@ -6618,7 +6618,7 @@ optional arguments:: | |||
6618 | instead of the default False which appends them | 6618 | instead of the default False which appends them |
6619 | match_path | 6619 | match_path |
6620 | match file_regex on the whole relative path to | 6620 | match file_regex on the whole relative path to |
6621 | the root rather than just the file name | 6621 | the root rather than just the filename |
6622 | aux_files_pattern_verbatim | 6622 | aux_files_pattern_verbatim |
6623 | Extra item(s) to be added to FILES for each | 6623 | Extra item(s) to be added to FILES for each |
6624 | package, using the actual derived module name | 6624 | package, using the actual derived module name |
@@ -11154,7 +11154,7 @@ way is to use a patch filename that matches the below pattern:: | |||
11154 | 11154 | ||
11155 | As shown in the example above, multiple CVE IDs can appear in a patch filename, | 11155 | As shown in the example above, multiple CVE IDs can appear in a patch filename, |
11156 | but the :ref:`cve-check <ref-classes-cve-check>` class will only consider | 11156 | but the :ref:`cve-check <ref-classes-cve-check>` class will only consider |
11157 | the last CVE ID in the file name as patched. | 11157 | the last CVE ID in the filename as patched. |
11158 | 11158 | ||
11159 | The second way to recognize a patched CVE ID is when a line matching the | 11159 | The second way to recognize a patched CVE ID is when a line matching the |
11160 | below pattern is found in any patch file provided by the recipe:: | 11160 | below pattern is found in any patch file provided by the recipe:: |
@@ -11180,7 +11180,7 @@ find unpatched CVE IDs. | |||
11180 | 11180 | ||
11181 | First the code goes through each patch file provided by a recipe. If a valid CVE ID | 11181 | First the code goes through each patch file provided by a recipe. If a valid CVE ID |
11182 | is found in the name of the file, the corresponding CVE is considered as patched. | 11182 | is found in the name of the file, the corresponding CVE is considered as patched. |
11183 | Don't forget that if multiple CVE IDs are found in the file name, only the last | 11183 | Don't forget that if multiple CVE IDs are found in the filename, only the last |
11184 | one is considered. Then, the code looks for ``CVE: CVE-ID`` lines in the patch | 11184 | one is considered. Then, the code looks for ``CVE: CVE-ID`` lines in the patch |
11185 | file. The found CVE IDs are also considered as patched. | 11185 | file. The found CVE IDs are also considered as patched. |
11186 | 11186 | ||