Re: [yocto] How to extract an archive in a git repostry and copy it to a defined position in the rootfs?

2016-09-13 Thread Burton, Ross
On 13 September 2016 at 08:08, wrote: > > ??? do_fetch_append () { > ???extract ${S}/example.tar.gz > ??? } > ??? do_install () { > ???copy ${S}/ ${D}/opt/ > ??? } It's a tarball so use "tar" to extract, and you'll need to mkdir ${D}/opt before copying. but that's barely just p

[yocto] How to extract an archive in a git repostry and copy it to a defined position in the rootfs?

2016-09-13 Thread S . Jaritz
Hej I like to build an package out of a git repro. This git repro contains compressed files. One of these files I like to copy into my package. I looked into the documentation, but it is only described how to use the fetcher of bitbake. Think I need to add some extra lines of instruction after