Thank you for the help! It is working now.Pi 02W only has 512M. Trying to run 4 compilers (or even worse linkers) in parallel is likely to exhaust RAM and leave you in swap hell.The problem I am having is that the SSH connection becomes unresponsive when executing stepCode:
make -j4 Image.gz modules dtbs
Try with -j1 which will be slower but much more likely to complete. It's possible -j2 would also work, but -j1 is safer.
I changed the code to:
Code:
make -j1 Image.gz modules dtbs
Statistics: Posted by agpolakkattil — Tue Sep 24, 2024 7:48 pm