ChinaUnix.net
相关文章推荐:

insmod 不支持 f 参数

insmod insmod filename [module-options] System administration command. Load the module filename into the kernel. Simpler but less flexible than the modprobe command. Error messages from insmod may be vague, because the kernel performs module operations internally and therefore sends error information to the kernel log instead of standard output; see dmesg. 本文来自ChinaUnix博客,如果查看...

by anima - Linux文档专区 - 2006-08-13 00:19:25 阅读(492) 回复(0)

相关讨论

本帖最后由 createwindow 于 2011-05-12 09:30 编辑 以下为代码[code]#include #include #include #include #include #include MODULE_LICENSE ("GPL"); int hello_major = 120; int hello_minor = 0; int number_of_devices = 1; struct cdev cdev; static dev_t dev; struct file_operations hello_fops = { .owne...

by createwindow - 驱动开发 - 2011-06-07 19:21:20 阅读(4610) 回复(7)

by tangke 2009-07-30 1.模块手工加载 虽然对内核驱动这一块不太熟,但是平时也会用到一些,最常见的就是驱动的加载insmod, modprobe,也一直没有做个总结。比如前两天黄伟拿过来一个EC的内核驱动,如何加载这个模块呢? $cp ec_brightness.ko /lib/modules/'uname -r'/kernel/drivers/char/ $depmod -a 重新生成一个内核模块依赖表 /lib/modules/'uname -r'/modules.dep $modprobe ec_brightness就可以。 但是我如果不做modp...

by fewlife - Linux文档专区 - 2009-07-30 21:02:15 阅读(848) 回复(0)

系统启动后,用insmod 加载模块,出现提示: insmod:unresolved symbol register_sound_dsp.R16aa6112 insmod:unresolved symbol kmalloc insmod:unresolved symbol _get_free_pages insmod:unresolved symbol prink 等等,请问是什么地方出了问题啊? 谢谢!

by alaohhw - 系统管理 - 2005-12-15 17:31:44 阅读(924) 回复(3)

系统启动后,用insmod 加载模块,出现提示: insmod:unresolved symbol register_sound_dsp.R16aa6112 insmod:unresolved symbol kmalloc insmod:unresolved symbol _get_free_pages insmod:unresolved symbol prink 等等,请问是什么地方出了问题啊? 谢谢!

by alaohhw - Linux系统管理 - 2005-12-15 17:31:44 阅读(1080) 回复(3)

在加载module时,出现以下错误: XXX.o: couldn't find the kernel version the module was compiled for 这是为何,望各位提示

by A-Liang - 内核/嵌入技术 - 2005-12-02 21:27:45 阅读(1109) 回复(9)

在加载module时,出现以下错误: XXX.o: couldn't find the kernel version the module was compiled for 这是为何,望各位提示

by A-Liang - 内核源码 - 2005-12-02 21:27:45 阅读(1715) 回复(9)

我modprobe 3c90x通过 但是为什么我insmod 3c90x时为什么提示我没有此硬件呢? 我的内核是2.6.11 但是重新启动机器以后.就可以自动挂上这个3com的卡卡

by 扫净缘客 - Linux论坛 - 2005-05-12 08:56:53 阅读(658) 回复(4)

我modprobe 3c90x通过 但是为什么我insmod 3c90x时为什么提示我没有此硬件呢? 我的内核是2.6.11 但是重新启动机器以后.就可以自动挂上这个3com的卡卡

by 扫净缘客 - Linux系统管理 - 2005-05-12 08:56:53 阅读(812) 回复(4)

intmod 在aix下面有这个命令么?

by johnason - AIX - 2008-11-28 22:58:09 阅读(3834) 回复(10)

intmod 在aix下面有这个命令么?

by johnason - AIX - 2003-05-26 16:19:20 阅读(4516) 回复(5)