Hi,
This worked for me
PACKAGE="myapp"
where SVN_ROOT is something like
SVN_ROOT = "svn://10.10.10.xx"
Hi,
I am looking for some help with incorporating a svn check out into a recipe.
The current syntax I arrived at is:
SRC_URI = "svn://myserverip/Emerald/trunk/Applications/Examples/;module=SampleApplication;protocol=svn;rev=HEAD;user=username;pswd=userpassword"
In interacting with this server I would normally check out using a command like
svn co svn://myserverip/Emerald/trunk/Applications/Example/ SampleApplication SampleApplication
This would give me a directory called SampleApplication with the required source code.
I would normally authenticate myself once in advance of this checkout.
The documentation at
http://www.yoctoproject.org/docs/2.3/bitbake-user-manual/bitbake-user-manual.html#svn-fetcher
mentions
"module": The name of the svn module to checkout. You must provide this parameter. You can think of this parameter as the top-level directory of the repository data you want.
I'm not sure what that means in this context, in my example does it mean the SampleApplication folder?
There is no mention in the current documentation of parameters like user or pswd so I am not sure if these are still used.