Re: [yocto] Is there a recipe class that simply installs files to the target?

2013-08-13 Thread Brad Litterell
Ok, thanks - mainly wanted to make sure I was following a best practice of sorts. On Aug 13, 2013, at 5:39 PM, Khem Raj mailto:raj.k...@gmail.com>> wrote: On Aug 13, 2013, at 5:15 PM, Brad Litterell mailto:br...@taser.com>> wrote: I have some scripts I'd like to copy to the target to a simpl

Re: [yocto] Is there a recipe class that simply installs files to the target?

2013-08-13 Thread Khem Raj
On Aug 13, 2013, at 5:15 PM, Brad Litterell wrote: > I have some scripts I'd like to copy to the target to a simple folder, e.g. > /lib/foo > > Ideally I'd like to just create a simple recipe something like this: > > SRC_URI = "file://lib/foo/foo.sh" > inherit install_only > > Is there a cla

[yocto] Is there a recipe class that simply installs files to the target?

2013-08-13 Thread Brad Litterell
I have some scripts I'd like to copy to the target to a simple folder, e.g. /lib/foo Ideally I'd like to just create a simple recipe something like this: SRC_URI = "file://lib/foo/foo.sh" inherit install_only Is there a class like this? It seems like most recipes of this form accomplish th