Re: [yocto] local fetcher and devtool don't work well together

2017-10-05 Thread Aaron_Wright
Paul Eggleton wrote on 10/04/2017 06:47:50 PM: > Hi Aaron, > > On Thursday, 5 October 2017 11:54:32 AM NZDT aaron_wri...@selinc.com wrote: > > I have a recipe with: > > > > SRC_URI = "file://a/b/c/d;subdir=src" > > S = "${WORKDIR}/src/a/b/c/d" > > > > First off, ${S} must be set to the full p

Re: [yocto] local fetcher and devtool don't work well together

2017-10-04 Thread Paul Eggleton
Hi Aaron, On Thursday, 5 October 2017 11:54:32 AM NZDT aaron_wri...@selinc.com wrote: > I have a recipe with: > > SRC_URI = "file://a/b/c/d;subdir=src" > S = "${WORKDIR}/src/a/b/c/d" > > First off, ${S} must be set to the full path because the basepath uri > parameter[1] doesn't work. So this d

[yocto] local fetcher and devtool don't work well together

2017-10-04 Thread Aaron_Wright
I have a recipe with: SRC_URI = "file://a/b/c/d;subdir=src" S = "${WORKDIR}/src/a/b/c/d" First off, ${S} must be set to the full path because the basepath uri parameter[1] doesn't work. So this doesn't work: SRC_URI = "file://a/b/c/d;subdir=src;basepath=a/b/c/d" S = "${WORKDIR}/src" I wish it