chatchai nanudorn wrote:
Hi Jim Cromie
Umm, I try what you suggest but I got complie error
when I change
adeos suppport to "m".
I would like to ask you what .o different .ko , I
don't understand it, and
Can I use "insmod" with adeos.o (I have tried, but
failed)
Thank and regard
Chatchai
Thailand
.ko is a 2.6 kernel object, ie a module.
it differs from .o by having been linked with the kernel module
interfacing routines that support module_init, module_exit, etc.
did you run make xconfig, and change it that way ?
followed by make ?
doing this is proper way to care for dependencies. (I dont think there
are any, but..)
you should use modprobe rather than insmod,
it knows the dependencies, and knows where modules are installed.
insmod fullpath/to/adeos.ko works when its not installed yet,
provided it matches the running kernel.
you should explain precisely what youve tried
(w suitably edited copy-paste), or I can only guess.