I’m experimenting with linux-kernel/net/ipv4/igmp.c. To compile I use buildroot. When I make a change on igmp.c, is a full rebuid necessary?
The easiest way to rebuild a single package from scratch is to remove its build directory in output/build. Buildroot will then re-extract, re-configure, re-compile and re-install this package from scratch. You can ask buildroot to do this with the make -dirclean command.
https://buildroot.org/downloads/manual/manual.html#rebuild-pkg
The documentation talks only about packages, but I think it doesn’t include changes on the kernel itself? How can I avoid a full rebuild?