Re: [yocto] What is the right SRC_URI syntax for g...@bitbucket.org?

2019-04-24 Thread Burton, Ross
On Wed, 24 Apr 2019 at 13:29, Erik Hoogeveen wrote: > What I have is: > > SRCREV = "${AUTOREV}" > PE = "1" > PV = "0.0+git${SRCPV}" > > To make that work your recipe file name must have the format > '_git.bb’ Some corrections. If you're using a git URL then you need to set SRCREV to the sha

Re: [yocto] What is the right SRC_URI syntax for g...@bitbucket.org?

2019-04-24 Thread Erik Hoogeveen
What I have is: SRCREV = "${AUTOREV}" PE = "1" PV = "0.0+git${SRCPV}" To make that work your recipe file name must have the format '_git.bb’ Cheers, Erik On 23 Apr 2019, 13:44 +0200, JH , wrote: Thanks Eric, how did you set up SRCREV? I've got an error need to set a valid SRCREV. Thank you.

Re: [yocto] What is the right SRC_URI syntax for g...@bitbucket.org?

2019-04-24 Thread JH
Thanks Erik, that did the trick. Kind regards, - jupiter -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] What is the right SRC_URI syntax for g...@bitbucket.org?

2019-04-23 Thread Erik Hoogeveen
Hi, This works for me. I've have setup ssh my identity for Bitbucket. I use this in my recipes: SRC_URI = "gitsm://g...@bitbucket.org//.git;protocol=ssh;branch=${BRANCH}" Cheers, Erik On 21 Apr 2019, 02:58 +0200, JH , wrote: Hi, Could someone kindly clarify what is the syntax to access git

Re: [yocto] What is the right SRC_URI syntax for g...@bitbucket.org?

2019-04-23 Thread JH
Thanks Eric, how did you set up SRCREV? I've got an error need to set a valid SRCREV. Thank you. Kind regards, - jupiter On 4/23/19, Erik Hoogeveen wrote: > Hi, > > This works for me. I've have setup ssh my identity for Bitbucket. > > I use this in my recipes: > > SRC_URI =

Re: [yocto] What is the right SRC_URI syntax for g...@bitbucket.org?

2019-04-20 Thread JH
Hi, Could someone kindly clarify what is the syntax to access git source from bitbucket.org? I tried following different patterns, nothing works: SRC_URI = "git://bitbucket.org//;protocol=http;branch=${BRANCH}" SRC_URI = "git://@bitbucket.org//.git;protocol=ssh";branch=${BRANCH}" Thank you.

[yocto] What is the right SRC_URI syntax for g...@bitbucket.org?

2019-04-19 Thread JH
Hi, Sorry for a new starter questions, I searched Internet, there are a few examples to set up: SRC_URI = "git://@bitbucket.org//.git;protocol=ssh";branch=${BRANCH}" Not only that does not work, I have set up the public key to access the git bitbucket repository: $ ssh -v g...@bitbucket.org