|
在rh8下面的程序helloworld.c的内容为
#define MODULE
#include <linux/module.h>
int init_module(void)
{
printk("<1>hello world!\n");
return 0;
}
void cleanup_module(void)
{
printk("<1>Good bye!");
}
运行gcc -c helloworld.c
运行insmod helloworld.o
helloworld.o: kernel-module version mismatch
helloworld.o was compiled for kernel version 2.4.9-9
while this kernel is version 2.4.18-14.
该怎么办啊?谢谢!!! |
|