@@ -248,6 +248,10 @@ def setup_git_repo(repodir, version, devbranch, basetag='devtool-base', d=None):
remote_url = stdout.splitlines()[0]
logger.error(os.path.relpath(os.path.join(root, ".."), root))
bb.process.run('git submodule add %s %s' % (remote_url, os.path.relpath(root, os.path.join(root, ".."))), cwd=os.path.join(root, ".."))
+ # Do not descend into nested git repos that have submodules themselves.
+ if ".gitmodules" in dirs + files:
+ logger.warning('Nested git repository with submodules %s; devtool will not recurse into it', root)
+ dirs[:] = []
found = True
if found:
oe.patch.GitApplyTree.commitIgnored("Add additional submodule from SRC_URI", dir=os.path.join(root, ".."), d=d)
Prevent devtool from recursing into nested git repositories with submodules to avoid double git submodule add operation. Signed-off-by: Clement Faure <clement.faure@arm.com> --- scripts/lib/devtool/__init__.py | 4 ++++ 1 file changed, 4 insertions(+)