Quote:
Originally Posted by LaughingBoy
How does one check to see if their kernel already supports this? I'm using Fedora 7, 8, and 9.
|
there are quite a few ways ;-)
[NOTE]before doing any of this you should become root, by using the command
su in a terminal (or konsole).[/NOTE]
1. /proc/config.gz
this is the file that if copied:
Code:
cp /proc/config.gz/ <your kernel souces dir>/.config && make oldconfig
can build a kernel configuration that is exact as Your running kernel-image's one.
In that file _is_ the clue - either analyze it or after oldconfig examine the config in the
or
in said source directory
but before making even a slightest step make sure 100% to have the
exact same source as the running kernel image.
Trust me - fedora, Mandriva, SuSE and co. make quite a few kernel releases every now and then - and most of headache come from not taking extreme care for the exact same versions.
BTW - I learned the hard way - if something is not enabled by default in Mandriva's kernel - it's because it failed to build ;-) - i guess it applies to the others shipping patched kernels too.
This is so because they sport a highly patched kernel and tend to enable as much as possible by default.
report progress (I'll try to help as much as i can)