after compiling an image how to delete all the generated files and packages and go to default state ? or after compiling an image without deleting all the generated files and packages if i start to compile another device image will i face any errors ?
As @krazeh has pointed out, there are build commands to clean up. If you have made some source changes that you also want to get rid of then you can use git to clean up.
git reset --hard <ref>; git clean -fdx
Note that this will get rid of all changes and new files so don’t do it unless you’re really happy to lose any changes since the commit reference you use!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.