aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schnelte <develop@schnelte.de>2023-09-17 14:31:13 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-26 10:38:43 +0100
commit612bdf09416ff96d08b22cf92b077516d23d0963 (patch)
tree8837cc57e884e954a28b23486c4e69e97b358b90
parentb44d5d2a53d3082c8ce94e09c0cf833e33e25aec (diff)
downloadbitbake-contrib-612bdf09416ff96d08b22cf92b077516d23d0963.tar.gz
fetch2: Adds vscode devcontainer support
Visual studio code is injecting a git credential helper into every dev container. This helper is forwarding the git credentials from the host into the container. In order for this helper to work the REMOTE_CONTAINERS_IPC needs to be available in the environment for all git operations that require authentication. Signed-off-by: Matthias Schnelte <develop@schnelte.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/fetch2/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py
index 765aedd51..ffb1a92b2 100644
--- a/lib/bb/fetch2/__init__.py
+++ b/lib/bb/fetch2/__init__.py
@@ -874,6 +874,7 @@ FETCH_EXPORT_VARS = ['HOME', 'PATH',
'AWS_SECRET_ACCESS_KEY',
'AWS_DEFAULT_REGION',
'GIT_CACHE_PATH',
+ 'REMOTE_CONTAINERS_IPC',
'SSL_CERT_DIR']
def get_fetcher_environment(d):