Re: [yocto] Installing a directory tree of files into the target filesystem

2014-07-09 Thread Joe Nicholson
Thanks Adam. I don't have any major permissions issues either, so will definitely try that. I assume I could just explicitly set the permissions on the target directory as a later step in do_install if needed. Thanks also for the link. Cheers! Joe On 2014-07-09 14:56, Adam Hughes wrote

Re: [yocto] Installing a directory tree of files into the target filesystem

2014-07-09 Thread Adam Hughes
Hi Joe, > First post on here :-) My first post too. > I'd like to create a recipe that copies a whole directory tree > of files into a directory on the output filesystem. I faced the same problem, and resorted to "cp -r" (after making sure the directory was there using "install -d"). In my cas

[yocto] Installing a directory tree of files into the target filesystem

2014-07-09 Thread Joe Nicholson
Hi Guys First post on here :-) I'd like to create a recipe that copies a whole directory tree of files into a directory on the output filesystem. There's nothing to build here... it's just a web application with html files, image files, .js files, etc. What would be the best way of doing th