I use OpenEmbedded-Core and created a custom layer with priority 6. Months of development have passed, and now I want to increase the priority of my level to 8, because the append file from another level with priority 7 interferes with adding the file that I add to my layer.
My question is, how can I generate a list of recipes and .bbappend files used in the image?
I want to generate a list both before and after I make a priority change so that I can compare them (with reliable emphasis on diffftool) to see if any unexpected side effects have occurred, such as an important append file from another level is ignored potentially.
I am using the angstrom-v2014.12-yocto1.7 branch of the Angstrom distribution.
[EDIT]
Now I'm just curious to know how to specify which .bbappend files are actually using my image at the moment.
The list of packages can be viewed using "bitbake -g your-image-name", as suggested by @pnxs, or from the .manifest file (which I wanted to use), which in my case is under the deployment / Glibc / image / ImageName /. I initially asked how to create a list of recipe files, but I think that the list of packages is enough.
Regarding .bbappends, I had a case where my own .bbappend was ignored due to level priorities. I made changes to the priorities of my level and now I want to see if this caused any .bbappend files elsewhere in my image. As I understand it, using βbitbake-layers show-appendsβ, as suggested, displays all .bbappends, not just the ones that are actually used to create the image, so this does not do what I'm looking for.
source share