Some Yocto users have issues using git protocol behind firewalls. This patch changes the default repo protocol to HTTPS, and also changes OpenEmbedded's URL to the github.com mirror, as git.openembedded.org doesn't allow fetching through HTTPS.
Signed-off-by: Nikolay Dimitrov <[email protected]> --- default.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/default.xml b/default.xml index 642ba80..ff4f60d 100644 --- a/default.xml +++ b/default.xml @@ -3,9 +3,9 @@ <default revision="master" sync-j="4"/> - <remote fetch="git://git.yoctoproject.org" name="yocto"/> - <remote fetch="git://github.com/Freescale" name="freescale"/> - <remote fetch="git://git.openembedded.org" name="oe"/> + <remote fetch="https://git.yoctoproject.org/git" name="yocto"/> + <remote fetch="https://github.com/Freescale" name="freescale"/> + <remote fetch="https://github.com/openembedded" name="oe"/> <project remote="yocto" revision="master" name="poky" path="sources/poky"/> <project remote="yocto" revision="master-next" name="meta-fsl-arm" path="sources/meta-fsl-arm"/> -- 1.7.10.4 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
