LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1387|回复: 1

请教module problem

[复制链接]
发表于 2002-10-31 10:37:23 | 显示全部楼层 |阅读模式
在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.
该怎么办啊?谢谢!!!
 楼主| 发表于 2002-10-31 12:01:15 | 显示全部楼层
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表