I am trying to include certain header files in the yocto assembly that are in the dev packages. The packages are boost and alsa.
I have included bitback recipe files in my image recipe, which is bbappend of the main recipe (console-trdx-image.bb) as IMAGE_INSTALL + = and cut out the image.
When I look in my working directory of work, in packages for alsa and raise all the files, they are resident, where I want them to be - usr / include / alsa as an example.
It is difficult for me to get the built-in / installed package material in the root files of the image itself.
My.bbappend for alsa is as follows:
do_install_append() {
install -d ${D}/${includedir}/alsa
install -d ${D}/${includedir}/alsa/sound
install -m 0755 ${S}/include/*.h ${D}/${includedir}/alsa
install -m 0755 ${S}/include/sound/*.h ${D}/${includedir}/alsa/sound
}
FILES_${PN} += "${includedir}/alsa/*.h"
When I look in / usr / include in the rootfs of the created image, there is nothing there. Not a sausage.
Any ideas why?
Thanks!