summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/recipeutils.py
diff options
context:
space:
mode:
authorJulien Stephan <jstephan@baylibre.com>2023-12-05 15:56:29 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-12-06 22:55:49 +0000
commitb45cab4e1c161b1b1c7e5960f00566fa489c17e2 (patch)
treea67cc63932776e5166653086981202173977c395 /meta/lib/oe/recipeutils.py
parenteb0b664c8c0cca4456e2b175509dba1bab95b7f7 (diff)
downloadpoky-b45cab4e1c161b1b1c7e5960f00566fa489c17e2.tar.gz
recipeutils: bbappend_recipe: fix docstring
Add missing patchdir key in docstring description for srcfiles parameters. Also fix typo: value --> key in srcfile docstring description (From OE-Core rev: 302dccaef46418d0e0731870a882b54a525739ed) Signed-off-by: Julien Stephan <jstephan@baylibre.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/recipeutils.py')
-rw-r--r--meta/lib/oe/recipeutils.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe/recipeutils.py
index 0aa6d0593e..01c9ad190f 100644
--- a/meta/lib/oe/recipeutils.py
+++ b/meta/lib/oe/recipeutils.py
@@ -671,10 +671,12 @@ def bbappend_recipe(rd, destlayerdir, srcfiles, install=None, wildcardver=False,
671 rd: data dictionary for the recipe 671 rd: data dictionary for the recipe
672 destlayerdir: base directory of the layer to place the bbappend in 672 destlayerdir: base directory of the layer to place the bbappend in
673 (subdirectory path from there will be determined automatically) 673 (subdirectory path from there will be determined automatically)
674 srcfiles: dict of source files to add to SRC_URI, where the value 674 srcfiles: dict of source files to add to SRC_URI, where the key
675 is the full path to the file to be added, and the value is a 675 is the full path to the file to be added, and the value is a
676 dict with 'path' key containing the original filename as it 676 dict with following optional keys:
677 would appear in SRC_URI or None if it isn't already present. 677 path: the original filename as it would appear in SRC_URI
678 or None if it isn't already present.
679 patchdir: the patchdir parameter
678 You may pass None for this parameter if you simply want to specify 680 You may pass None for this parameter if you simply want to specify
679 your own content via the extralines parameter. 681 your own content via the extralines parameter.
680 install: dict mapping entries in srcfiles to a tuple of two elements: 682 install: dict mapping entries in srcfiles to a tuple of two elements: