Skip to main content

Posts

Showing posts from November, 2024

Full clean build in Yocto Project

  Remove the sstate cache directory # Delete sstate cache direcotry $ rm -rf sstate-cache/ Delete tmp directory # Delete tmp direcotry $ rm -rf tmp/  Bitbake cleanall command  #for complete clean the recipe  $ bitbake -fc cleanall <recipe_name> Bitbake clean command  # clean the output of the recipe $ bitbake -c clean <recipe_name>