Re: [OE-core] [oe][yocto][bitbake] Fetching source using different protocols

2020-05-12 Thread Dawod
Thank you all, your answers were so helpful, My problem had been solved. The reason behind my question was a temporary connections error for some machines in the lab so I needed some way to cover this problem as fast as possible to keep my Yocto recipes away from this problem. Thank you very

Re: [OE-core] [oe][yocto][bitbake] Fetching source using different protocols

2020-05-11 Thread Mark Hatle
On 5/11/20 4:17 AM, Quentin Schulz wrote: > Hi Mohamed, > > On Mon, May 11, 2020 at 11:03:26AM +0200, Dawod wrote: >> Hello, >> >> I need to fetch a git repo using 2 different protocols ( ssh & https ) >> So that when I run bitbake, It will fetch using ssh protocol first and if >> it fails to

Re: [OE-core] [oe][yocto][bitbake] Fetching source using different protocols

2020-05-11 Thread Andre McCurdy
On Mon, May 11, 2020 at 2:03 AM Dawod wrote: > > Hello, > > I need to fetch a git repo using 2 different protocols ( ssh & https ) > So that when I run bitbake, It will fetch using ssh protocol first and if it > fails to fetch, It will try to fetch using https protocol. > > can I do some thing

Re: [OE-core] [oe][yocto][bitbake] Fetching source using different protocols

2020-05-11 Thread Quentin Schulz
Hi Mohamed, On Mon, May 11, 2020 at 11:03:26AM +0200, Dawod wrote: > Hello, > > I need to fetch a git repo using 2 different protocols ( ssh & https ) > So that when I run bitbake, It will fetch using ssh protocol first and if > it fails to fetch, It will try to fetch using https protocol. >

[OE-core] [oe][yocto][bitbake] Fetching source using different protocols

2020-05-11 Thread Dawod
Hello, I need to fetch a git repo using 2 different protocols ( ssh & https ) So that when I run bitbake, It will fetch using ssh protocol first and if it fails to fetch, It will try to fetch using https protocol. can I do some thing like that or I will have to change it manually every time ?