How to access to bootfs from Distribution Package
Using the Distribution Package for STM32MP1 I'm able to access to the rootfs partition, example:
my_postprocess_function() {
cp -dr /home/osboxes/www ${IMAGE_ROOTFS}/opt/
chown -R daemon:daemon ${IMAGE_ROOTFS}/opt/www/
}But how to access to bootfs partition? For example to add the `boot.scr.uimg` or `rproc-m4-fw.elf`. I cannot find a `${IMAGE_BOOTFS}` variable.
