Re: [yocto] adding own shell script to the image

2018-10-29 Thread Outback Dingo
On Mon, Oct 29, 2018 at 8:47 PM Uwe Geuder wrote: > > On Mon, Oct 29, 2018 at 3:28 PM Zolee K zoleelikesdebian-at-gmail.com wrote: > > > The error message: > > > > /home//recipes-z/testing/testing.bb: Unable to get checksum for testing > > SRC_URI entry testscript: *file could not be found*

Re: [yocto] adding own shell script to the image

2018-10-29 Thread Uwe Geuder
On Mon, Oct 29, 2018 at 3:28 PM Zolee K zoleelikesdebian-at-gmail.com wrote: > The error message: > > /home//recipes-z/testing/testing.bb: Unable to get checksum for testing > SRC_URI entry testscript: *file could not be found* > Which I don't understand, since the file is definitaly

Re: [yocto] adding own shell script to the image

2018-10-29 Thread Outback Dingo
On Mon, Oct 29, 2018 at 8:32 PM Outback Dingo wrote: > > SRC_URI = "file://testscript" > > FILESEXTRAPATHS_prepend := "${THISDIR}/file:" > > and file should be files crap ... sorry for the top post > On Mon, Oct 29, 2018 at 8:28 PM Zolee K wrote: > > > > Hi All, > > > > I'm struggling with

Re: [yocto] adding own shell script to the image

2018-10-29 Thread Outback Dingo
SRC_URI = "file://testscript" FILESEXTRAPATHS_prepend := "${THISDIR}/file:" and file should be files On Mon, Oct 29, 2018 at 8:28 PM Zolee K wrote: > > Hi All, > > I'm struggling with this: > > The error message: > > /home//recipes-z/testing/testing.bb: Unable to get checksum for testing >

[yocto] adding own shell script to the image

2018-10-29 Thread Zolee K
Hi All, I'm struggling with this: The error message: /home//recipes-z/testing/testing.bb: Unable to get checksum for testing SRC_URI entry testscript: *file could not be found* Which I don't understand, since the file is definitaly there:-( Could you please help me out with this?

Re: [yocto] adding own shell script

2018-10-29 Thread Uwe Geuder
On Mon, Oct 29, 2018 at 11:51 AM Zolee K zoleelikesdebian-at-gmail.com wrote: > > I'd like to install my own test.sh script into the image, I created this > recipe file, however I dont know how to have bitbake put the my test.sh > into /etc folder > > SUMMARY = "test.sh" > LICENSE = "Z" > >

[yocto] adding own shell script

2018-10-29 Thread Zolee K
Hi all, I'd like to install my own test.sh script into the image, I created this recipe file, however I dont know how to have bitbake put the my test.sh into /etc folder SUMMARY = "test.sh" LICENSE = "Z" SRC_URI = "\ file://test.sh \ " do_configure(){ : } do_compile() { : }