I am using buildroot to build linux firmware. How can I do a clean rebuild the linux kernel only (without having to build the whole thing which take an hour)?
I tried -
make linux-rebuild
but that does not do a clean.
I have also tried
make linux-reconfigure && make linux-rebuild
but that does not work either.
cd
to the kernel directory, thenmake ARCH=<arch> clean
, and delete the salient .stamp* files, e.g. .stamp_build. Be careful to not delete all of them. – Limb