RE: Insmod problems

Michael Zhu (apiggyjj@yahoo.ca)
Tue, 4 Dec 2001 13:13:51 -0500 (EST)


I've changed my source file like this:
#define MODULE

#include <linux/module.h>

int init_module(void) { printk("<1>Hello, world\n");
return 0; }
void cleanup_module(void) { printk("<1>Goodbye cruel
world\n"); }

And I use the following message to build the module.
But when I use insmod to load the module I got the
following error message:

hello.o : kernel-module version mismatch
hello.o was compiled for kernel version
2.4.12
while this kernel is version 2.4.8

What is wrong? My kernel version is 2.4.8. Is there
something wrong with the gcc compilier? My gcc
compilier is gcc-2.95.

Thanks to everyone. Your help is very beneficial to
me.

Michael

--- Christine Ames <CAmes@PacificDigital.com> wrote:
> > -----Original Message-----
> > From: Michael Zhu [mailto:apiggyjj@yahoo.ca]
> > Sent: Tuesday, December 04, 2001 9:07 AM
>
> <snip>
>
> >
> >
> > I've define these two when I compile the module.
> The
> > command line is:
> >
> > gcc -D_KERNEL_ -DMODULE -c hello.c
> >
> >
> <snip>
> >
>
> See http://www.xml.com/ldd/chapter/book/ch02.html
>
> Where your source should be similar to:
>
> #define MODULE // <- HERE!!! define MODULE
> #include <linux/module.h>
>
> int init_module(void) { printk("<1>Hello,
> world\n"); return 0; }
> void cleanup_module(void) { printk("<1>Goodbye cruel
> world\n"); }
>

______________________________________________________
Send your holiday cheer with http://greetings.yahoo.ca
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/