Re: [yocto] SRC_URI issue in recipe writing

2014-06-24 Thread Pourya Shirazian
Thanks alot Anders, Finally I made it work with ssh: The colon after the domain name should be changed to a / : Wrong) SRC_URI = "g...@mygitserver.net:me/myproject.git;protocol=ssh; branch=master" Correct) SRC_URI = "g...@mygitserver.net/me/myproject.git;protocol=ssh; branch=master" Cheers, On

Re: [yocto] SRC_URI issue in recipe writing

2014-06-24 Thread Anders Darander
* Pourya Shirazian [140624 00:58]: > Hi, > When writing a recipe the SRC_URI is supposed to accept git repository > addresses but the following fails to build for me: > 1. With http URL: It also does not allow my credentials to be embedded in the > URI > SRC_URI = "http://mygitserver.net/mypro

[yocto] SRC_URI issue in recipe writing

2014-06-23 Thread Pourya Shirazian
Hi, When writing a recipe the SRC_URI is supposed to accept git repository addresses but the following fails to build for me: 1. With http URL: It also does not allow my credentials to be embedded in the URI SRC_URI = "http://mygitserver.net/myproject.git;protocol=http;branch=master