by Void Main » Fri Nov 07, 2003 8:27 pm
It's a patch file to bring you up from the base 2.6.0-test9 kernel source to the current BitKeeper version (bk12 in this case). You have to download the base kernel source and then apply that patch to that source. Usually you would extract the kernel source under the /usr/src directory so the base directory will be something like "/usr/src/linux-2.6.0-test9". Usually you apply the patch by doing something like:
# cd /usr/src/linux-2.6.0-test9
# bzcat /path/to/patch-2.6.0-test9-bk12.bz2 | patch -p1
I haven't actually compiled a 2.6.0 kernel yet as I have just been installing the latest 2.6.0-testX prebuilt RPM that a Red Hat empoyee has been building on a regular basis via apt-get (I'm getting lazy).
Regarding speed. There are two opposing pros and cons when it comes to modules vs static. One is size and one is speed. Each of these are so minute that neither are really noticable. On the one hand you have the time it takes to actually load a module which usually only happens once (but could happen more than once depending on how you use your hardware and whether you have your system configured to automatically unload modules that have not been used for a period of time). This load time is like a fraction of a millisecond and as I said is something you wouldn't even notice. Once loaded the operation is really no different than if it were compiled in. Obviously if you only load modules for devices you are actually using the kernel space will be smaller, but again, probably not enough to really mean anything compared to the amount of memory you actually have.
To me, the kernel should be nothing more than a stub built to load modules and every function/driver should be a module, and this is the direction that the kernel is going. Done right this would help in allowing you to upgrade your kernel without actually having to reboot the system. I thought this was a goal for the 2.6 kernel but I don't know what the status of this is.
Of course there are other advantages/disadvantages of each. I just like a modular kernel.