"is there a way to check the exact list of packages that will be installed in the image in yocto?" Code Answer

5

yes, like this on old bitbake versions:

bitbake -g <image> && cat pn-depends.dot | grep -v -e '-native' 
    | grep -v digraph | grep -v -e '-image' | awk '{print $1}' | sort | uniq

taken from the nxp community website

on newer:

bitbake -g <image> && cat pn-buildlist | grep -ve "native" | sort | uniq
By Vji on January 19 2022

Answers related to “is there a way to check the exact list of packages that will be installed in the image in yocto?”

Only authorized users can answer the Search term. Please sign in first, or register a free account.