Hello folks,
I have been reading about compiling the kernel mostly from hereand the relevant links that page contains like this and this.
Now since I want to enable kernel level debugging I am following this page about enabling ddb. To do that, I have created a configuration file called MYKERNEL ( sounds cliched
, but what the heck) and in keeping with the present trend, have included the original GENERIC file in the new configuration file called MYERNEL.
Now my new config file starts out like:
followed by
But when I compile the kernel, using
it looks like it rebuilds everything or atleast seems to check the dependencies that this change might have affected. IS there a way to speeden things up a little?
Now one of the links above, i.e. this talks about speeding up the compile process by explicitly telling the make uitlity to only build those modules which have been 'tainted' in some way because of the new config file. But I do not know the modules that might need to be rebuilt yet I want the build process to figure it out itself. Is this what happens or am I asking for too much?
Looking to hear from you,
Regards,
Aijaz Baig.
I have been reading about compiling the kernel mostly from hereand the relevant links that page contains like this and this.
Now since I want to enable kernel level debugging I am following this page about enabling ddb. To do that, I have created a configuration file called MYKERNEL ( sounds cliched

Now my new config file starts out like:
Code:
include GENERIC
ident MYKERNEL
Code:
options KDB
options DDB
Code:
make buildkernel KERNCONFIG=MYKERNEL
Now one of the links above, i.e. this talks about speeding up the compile process by explicitly telling the make uitlity to only build those modules which have been 'tainted' in some way because of the new config file. But I do not know the modules that might need to be rebuilt yet I want the build process to figure it out itself. Is this what happens or am I asking for too much?
Looking to hear from you,
Regards,
Aijaz Baig.