阅读:1582回复:6
insmod出错
我insmod的时候出现:couldn't find the kernel version the module was compiled for
我找不倒原因了 |
|
沙发#
发布于:2004-06-14 21:07
编译模块的版本和系统版本不通吧。
|
|
|
板凳#
发布于:2004-06-16 09:05
insmod -f xxx 试试,强制接受
|
|
地板#
发布于:2004-06-16 09:47
两个版本必须一致,最好用与使用环境一致的版本!
|
|
地下室#
发布于:2004-07-08 11:38
在你编译驱动时应该包含与你正在使用的内核版本相同的头文件
|
|
|
5楼#
发布于:2004-08-03 20:58
如果将#define MODULE
改为#define MODVERSIONS 也会出现couldn't find the kernel version the module was compiled for |
|
6楼#
发布于:2004-08-17 20:35
在程序里面加上
#define MODULE 就可以了 |
|