diff options
author | Julien Stephan <jstephan@baylibre.com> | 2023-11-22 12:08:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-12-01 11:48:25 +0000 |
commit | 17427db136491f13b0c9f187906ce9e3f6c85b29 (patch) | |
tree | 63c8c76716b6984a4097c275a74fc1cf1bac2943 /scripts | |
parent | 1ae4cc7a1158d704c7f41bdae4fe194a9c57df05 (diff) | |
download | poky-17427db136491f13b0c9f187906ce9e3f6c85b29.tar.gz |
devtool: tag all submodules
In the case of a repository with submodules, we need to add the
"devtool-base" and "devtool-patched" tag on all submodules in order to
properly detect the added/removed/modified patches
(From OE-Core rev: 241da68805d177d4ec4b302c8a997645cc645286)
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 'scripts')
-rw-r--r-- | scripts/lib/devtool/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/lib/devtool/__init__.py b/scripts/lib/devtool/__init__.py index 702db669de..e9e88a5533 100644 --- a/scripts/lib/devtool/__init__.py +++ b/scripts/lib/devtool/__init__.py | |||
@@ -233,6 +233,9 @@ def setup_git_repo(repodir, version, devbranch, basetag='devtool-base', d=None): | |||
233 | bb.process.run('git checkout -b %s' % devbranch, cwd=repodir) | 233 | bb.process.run('git checkout -b %s' % devbranch, cwd=repodir) |
234 | bb.process.run('git tag -f %s' % basetag, cwd=repodir) | 234 | bb.process.run('git tag -f %s' % basetag, cwd=repodir) |
235 | 235 | ||
236 | if os.path.exists(os.path.join(repodir, '.gitmodules')): | ||
237 | bb.process.run('git submodule foreach --recursive "git tag -f %s"' % basetag, cwd=repodir) | ||
238 | |||
236 | def recipe_to_append(recipefile, config, wildcard=False): | 239 | def recipe_to_append(recipefile, config, wildcard=False): |
237 | """ | 240 | """ |
238 | Convert a recipe file to a bbappend file path within the workspace. | 241 | Convert a recipe file to a bbappend file path within the workspace. |