Re: [yocto] non-existent task do_package_write_ipk

2018-11-09 Thread Donal Morrissey
Hi Ross, I had to use IMAGE_PREPROCESS_COMMAND in my own image recipe, the execution order of the ROOTFS_POSTPROCESS_COMMAND commands didn't work for me. Thanks for your help. Donal On Fri, 9 Nov 2018 at 14:53, Burton, Ross wrote: > On Fri, 9 Nov 2018 at 14:48, Donal Morrissey > wrote: > > Than

Re: [yocto] non-existent task do_package_write_ipk

2018-11-09 Thread Burton, Ross
On Fri, 9 Nov 2018 at 14:48, Donal Morrissey wrote: > Thank you for your help. My build is using a layer which is generating a file > in a ROOTFS_POSTPROCESS_COMMAND command. I would like to modify this file as > part of the yocto build, but I'd prefer not to modify/fork this layer as it > is f

Re: [yocto] non-existent task do_package_write_ipk

2018-11-09 Thread Donal Morrissey
Hi Ross, Thank you for your help. My build is using a layer which is generating a file in a ROOTFS_POSTPROCESS_COMMAND command. I would like to modify this file as part of the yocto build, but I'd prefer not to modify/fork this layer as it is from a vender. I'm creating my own layer, which will mo

Re: [yocto] non-existent task do_package_write_ipk

2018-11-09 Thread Burton, Ross
A recipe that ship files and generates packages can't also inherit core-image because it can't both be a package and an image. If you want this package to run something when it is installed, write a post-install function (pkg_postinst). Ross On Fri, 9 Nov 2018 at 11:35, Donal Morrissey wrote: >