diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-09-04 11:09:11 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-04 14:08:35 +0100 |
commit | c5003a45d9c54a7a6d1c78799b8c2e3962cf1e52 (patch) | |
tree | 1a839628364da31ff7c65c2e4978c8519ab4a2fe /meta/conf/bitbake.conf | |
parent | 6b641bbbecb0bd219479f09faf9611406b2e3abc (diff) | |
download | poky-c5003a45d9c54a7a6d1c78799b8c2e3962cf1e52.tar.gz |
bitbake.conf: FETCHCMD_svn add --non-interactive --trust-server-cert
* now with subversion-native we know those 2 options are supported
* with https protocol used for SVN checkouts we cannot confirm certificate and do_fetch fails
Error validating server certificate for 'https://foo:443':
- The certificate is not issued by a trusted authority. Use the
fingerprint to validate the certificate manually!
Certificate information:
...
(R)eject, accept (t)emporarily or accept (p)ermanently? svn: E175002: Unable to connect to a repository at URL 'https://foo/trunk'
svn: E175002: OPTIONS of 'https://foo/trunk': Server certificate verification failed: issuer is not trusted (https://foo)
ERROR: Function failed: Fetcher failure for URL: 'svn://foo;protocol=https;module=trunk'. Unable to fetch URL from any source.
(From OE-Core rev: 8f1cedaaafd1248e77db84ac238fa88a318df2e9)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 702fc50991..1d4a83dc8d 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -578,7 +578,7 @@ XORG_MIRROR = "http://xorg.freedesktop.org/releases" | |||
578 | # export DEBIAN_MIRROR = "ftp://ftp.de.debian.org/debian/pool" | 578 | # export DEBIAN_MIRROR = "ftp://ftp.de.debian.org/debian/pool" |
579 | # into your local.conf | 579 | # into your local.conf |
580 | 580 | ||
581 | FETCHCMD_svn = "/usr/bin/env svn" | 581 | FETCHCMD_svn = "/usr/bin/env svn --non-interactive --trust-server-cert" |
582 | FETCHCMD_cvs = "/usr/bin/env cvs" | 582 | FETCHCMD_cvs = "/usr/bin/env cvs" |
583 | FETCHCMD_wget = "/usr/bin/env wget -t 2 -T 30 -nv --passive-ftp --no-check-certificate" | 583 | FETCHCMD_wget = "/usr/bin/env wget -t 2 -T 30 -nv --passive-ftp --no-check-certificate" |
584 | FETCHCMD_bzr = "/usr/bin/env bzr" | 584 | FETCHCMD_bzr = "/usr/bin/env bzr" |