Hello,
I created a layer that we will call “layer L” where I have a core-image-base.bbappend recipe that is being parsed and it works fine when I build this image (core-image-base).
I would like to create another image based on the core-image-base so I created a simple core-image-test.bb recipe as the following:
DESCRIPTION_append = "test image"
require recipes-core/images/core-image-base.bb
IMAGE_INSTALL_append = "\
testpackage \
"
The core-image-test is building fine however it uses only the raw core-image-base.bb and does not apply all core-image-base.bbappend of the other layers (digi and layer L).
Is there any way to have an image including all bb & bbappend of another image?