I am adding a new system call to sched.c. However, everytime to check whether my system call works properly i need to recompile kernel. Since I am only making changes in sched.c, I thought maybe there is a better and shorter way for this process.
I am currently compiling the kernel by the command
fakeroot make-kpkg --initrd –-append-to-version=-custom kernel_image (i removed kernel headers but still takes a lot time:( )
Compile the kernel directly,
Compile the kernel directly, without any fancy distro scripts.
...since distro scripts
...since distro scripts always start from scratch, while building your own, you keep the object files.
re: reducing kernel compile time
use ccache
how do we use ccache to
how do we use ccache to compile the kernel?
anything unclear?
is there anything unclear about the manual and/or examples?