QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 820|回复: 8

内核模块的问题

[复制链接]
发表于 2004-8-15 17:19:21 | 显示全部楼层 |阅读模式
/*hello.c*/
#define MODULE
#include<linux/module.h>

int init_module(void)
{
        printk("Hello, world\n");
        return 0;
}

void cleanup_module(void)
{
        printk("Goodbye cruel world\n");
}
然后
gcc -c 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.
这个要怎么办阿?
发表于 2004-8-16 09:25:19 | 显示全部楼层
模块不是这样编译的
回复

使用道具 举报

发表于 2004-8-16 09:32:03 | 显示全部楼层
gcc -c test.c -D__KERNEL__ -include /usr/src/linux/include/linux/modversions.h -I/usr/src/linux/include
回复

使用道具 举报

 楼主| 发表于 2004-8-17 06:40:21 | 显示全部楼层
[quote:14ddbec8e7="mozilla"]gcc -c test.c -D__KERNEL__ -include /usr/src/linux/include/linux/modversions.h -I/usr/src/linux/include[/quote]

我在自己的机器上用了
[root@localhost code]# gcc -c hello.c -D__KERNEL__ -include /usr/src/linux-2.4.20-8/include/linux/modversions.h -I/usr/src/linux-2.4.20-8/include

[root@localhost code]# insmod hello.o
Warning: loading hello.o will taint the kernel: no license
  See http://www.tux.org/lkml/#export-tainted for information about tainted modules
Module hello loaded, with warnings
终于能加载这个模块了,当然rmmod hello也是成功的,然而却没有预料中hello , world的输出,这是怎么回事阿?
回复

使用道具 举报

发表于 2004-8-17 08:33:24 | 显示全部楼层
dmseg看看
回复

使用道具 举报

发表于 2004-8-17 10:00:39 | 显示全部楼层
[quote:19fa3467f6="panzhenjie"][quote:19fa3467f6="mozilla"]gcc -c test.c -D__KERNEL__ -include /usr/src/linux/include/linux/modversions.h -I/usr/src/linux/include[/quote]

我在自己的机器上用了
[root@localhost code]# gcc -c hello.c -D__KERNEL__ -include /usr/src/linux-2.4.20-8/include/linux/modversions.h -I/usr/src/linux-2.4.20-8/include

[root@localhost code]# insmod hello.o
Warning: loading hello.o will taint the kernel: no license
  See http://www.tux.org/lkml/#export-tainted for information about tainted modules
Module hello loaded, with warnings
终于能加载这个模块了,当然rmmod hello也是成功的,然而却没有预料中hello , world的输出,这是怎么回事阿?[/quote]
在终端下看不到,在控制台下就能看到了.
回复

使用道具 举报

 楼主| 发表于 2004-8-17 16:04:59 | 显示全部楼层
抱歉,什么是控制台啊?要怎么打开控制台?
回复

使用道具 举报

发表于 2004-8-17 16:54:39 | 显示全部楼层
Ctrl + Alt + F1
Ctrl + Alt + F2
Ctrl + Alt + F3
Ctrl + Alt + F4
.
.
.
.
回复

使用道具 举报

发表于 2004-9-12 12:53:18 | 显示全部楼层
adding : MODULES_LISCINCE("GPL")
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-7 13:37 , Processed in 0.043868 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

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