summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2011-10-04 17:03:05 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-30 16:37:57 +0000
commitef1a8f21e068ca996ce946dbac5e8ee93cdaa220 (patch)
tree0646c8911d0f5b490d29bd94cd303f34194733d2 /scripts
parent0c1b16db4ced6958c58e56e93033b7b7be85b816 (diff)
downloadpoky-ef1a8f21e068ca996ce946dbac5e8ee93cdaa220.tar.gz
scripts/oe-buildenv-internal: Add SOCKS5_{USER, PASSWD} to BB_ENV_EXTRAWHITE
If a SOCKS5 gateway is needed for a proxy access like git it might also require authentication to the proxy via a password and username. Adding SOCKS5_USER & SOCKS5_PASSWD to BB_ENV_EXTRAWHITE allow for automation of the authentication request to occur when something like a git fetch is going through the proxy. This patch requires the bitbake patch to add extra exportvars so these variables get passed from Env -> bitbake -> fetcher (From OE-Core rev: 9206ea0f7cd39d2ba6ff4b41cbeb17409d3ae5f1) (From OE-Core rev: e0438a7ce3523c25d36d564ca85753f0931544e6) Signed-off-by: Kumar Gala <galak@kernel.crashing.org> Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/oe-buildenv-internal3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/oe-buildenv-internal b/scripts/oe-buildenv-internal
index 61ac18c14e..21b92b0f9e 100755
--- a/scripts/oe-buildenv-internal
+++ b/scripts/oe-buildenv-internal
@@ -70,5 +70,4 @@ unset BITBAKEDIR
70# Used by the runqemu script 70# Used by the runqemu script
71export BUILDDIR 71export BUILDDIR
72export PATH 72export PATH
73 73export BB_ENV_EXTRAWHITE="MACHINE DISTRO TCMODE TCLIBC http_proxy ftp_proxy https_proxy all_proxy ALL_PROXY no_proxy SSH_AGENT_PID SSH_AUTH_SOCK BB_SRCREV_POLICY SDKMACHINE BB_NUMBER_THREADS PARALLEL_MAKE GIT_PROXY_COMMAND GIT_PROXY_IGNORE SOCKS5_PASSWD SOCKS5_USER"
74export BB_ENV_EXTRAWHITE="MACHINE DISTRO TCMODE TCLIBC http_proxy ftp_proxy https_proxy all_proxy ALL_PROXY no_proxy SSH_AGENT_PID SSH_AUTH_SOCK BB_SRCREV_POLICY SDKMACHINE BB_NUMBER_THREADS PARALLEL_MAKE GIT_PROXY_COMMAND"