Re: [yocto] How to create do_populate_sysroot_append task

2016-02-12 Thread Vivek Per
I got the solution for the above issue , we can create a custom has given below in the recipe # addtask copy_files_sysroot after do_populate_sysroot before do_package do_copy_files_sysroot() { --- } # I hope this

[yocto] How to create do_populate_sysroot_append task

2016-02-11 Thread Vivek Per
Hi, I want to add some additional kernel files to sysroot directory . I want to extend do_populate_sysroot task , I want to copy few more files in to sysroot after do_populate_sysroot and before do_package. I tried to create do_populate_sysroot_append() in recipe but it is getting parsing