static int init_module(){
printk("Hello,World!\n");
return 0;
}
static void cleanup_module(){
printk("Bye!\n");
}
gcc -c -I/usr/src/linux/include hello.c后
运行命令
insmod hello.o
出现如下错误
hello.o: kernel-module version mismatch
hello.o was compiled for kernel version 2.4.20
while this kernel is version 2.4.20-8.
这是怎么回事?
我的系统是RH9.0