How to list all recipes used to build an image in Yocto build?

32 views Asked by At

For listing all the recipes which are used to build an image, suggest any method? I had tried following command:

bitbake-layers show-recipes --filenames

But the above command has the limitation that it list all the recipes available under yocto directory instead all the recipes used to build an image.

1

There are 1 answers

0
Ross Burton On
bitbake -g <recipe>

This will write a file called pn-buildlist that is the complete list of recipes to be built.