Click to See Complete Forum and Search --> : where are the console.o's function?


TomSi
09-02-2002, 10:28 PM
In the console.c (in kernel/driver/char/), I found the console.c have exported some of functions, just like
EXPORT_SYMBOL(color_table);
EXPORT_SYMBOL(default_red);
...
when building the kernel, I am sure that the console.o is builded into the kernel.
but I can find these functions in the ksyms.
where can I find them?

bwkaz
09-03-2002, 08:21 AM
They're in two files on my system -- /proc/ksyms (which is the live, running kernel) and /boot/System.map (which I copied to /boot when I installed the kernel).

Try grepping through both of these files for them. If you didn't put System.map in /boot, it should be in the root of your kernel build tree.