Re: [yocto] Creating a recipe to create /usr/local

2014-12-02 Thread Chan Kit Yu
For 2. , I also have the same issue with gstreamer1.0-plugins good. Although the image does include some plugins, I noticed that the image doesn't have complete plugins under gstreamer1.0-plugins-good unless I manually installed all the packages gstreamer1.0-plugins-good* under tmp/deploy/rpm/corei

Re: [yocto] Creating a recipe to create /usr/local

2014-11-30 Thread Chan Kit Yu
Hi Paul, Your approach worked and I thank you for that. However I have some more unrelated questions (if you don't mind): 1. I noticed some mainstream Python modules that are supposed to come with default Python installation are not present. I take the example of sqlite3 module not present in de

Re: [yocto] Creating a recipe to create /usr/local

2014-11-28 Thread Chan Kit Yu
Thanks for saving me from myself. I will try it out and let you know my results On Nov 28, 2014 7:22 PM, "Paul Barker" wrote: > On 27 November 2014 at 07:09, Chan Kit Yu wrote: > > Hi all, > > > > I'm not sure if emailing this is the most appropriate way and I > > apologize in advance if that's

Re: [yocto] Creating a recipe to create /usr/local

2014-11-28 Thread Paul Barker
On 27 November 2014 at 07:09, Chan Kit Yu wrote: > Hi all, > > I'm not sure if emailing this is the most appropriate way and I > apologize in advance if that's not. > > I have some scripts that require /usr/local to exist in Yocto and > therefore I need to a recipe to create /usr/local directory.

Re: [yocto] Creating a recipe to create /usr/local

2014-11-28 Thread Yukatharsani Jeyachandra
Please add FILES_PN = "${prefix}/local/*" line in your recipe. Thanks, yukatharsani J. On 28-11-2014 14:50, Chan Kit Yu wrote: Not sure if you wanna read through the log file. I was initially dumbfounded but reading through the log I think I found the issue. Here's the main error (I think)

Re: [yocto] Creating a recipe to create /usr/local

2014-11-28 Thread Chris Tapp
On 28 Nov 2014, at 01:55, Chan Kit Yu wrote: > I would also like to add that bitbaking that recipe alone was fine but > bitbaking my image to include that package failed. I'm not sure what's going on - can you post the error message (or at least the relevant part)? > On Fri, Nov 28, 2014 at 9

Re: [yocto] Creating a recipe to create /usr/local

2014-11-27 Thread Chan Kit Yu
I would also like to add that bitbaking that recipe alone was fine but bitbaking my image to include that package failed. On Fri, Nov 28, 2014 at 9:43 AM, Chan Kit Yu wrote: > Hi Chris, > > Thank you very much :-) > But it was no good. I still get the same error even with the "install" use. > > H

Re: [yocto] Creating a recipe to create /usr/local

2014-11-27 Thread Chan Kit Yu
Hi Chris, Thank you very much :-) But it was no good. I still get the same error even with the "install" use. Here I attach the full recipe just in case I did wrong somewhere: SUMMARY = "Create /usr/local" SECTION = "meta-networking" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DI

Re: [yocto] Creating a recipe to create /usr/local

2014-11-27 Thread Chris Tapp
On 27 Nov 2014, at 07:09, Chan Kit Yu wrote: > Hi all, > > I'm not sure if emailing this is the most appropriate way and I > apologize in advance if that's not. > > I have some scripts that require /usr/local to exist in Yocto and > therefore I need to a recipe to create /usr/local directory.

[yocto] Creating a recipe to create /usr/local

2014-11-27 Thread Chan Kit Yu
Hi all, I'm not sure if emailing this is the most appropriate way and I apologize in advance if that's not. I have some scripts that require /usr/local to exist in Yocto and therefore I need to a recipe to create /usr/local directory. I tried to accomplish this with a simple recipe but that prove