码迷,mamicode.com
首页 > 其他好文 > 详细

insmod内核模块时提示Failed to find the folder holding the modules怎么办?

时间:2019-07-18 19:46:13      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:内核   注意   代码   ade   linux   roo   stderr   模块   nbsp   

答:笔者通过重新编译内核和根文件系统解决了此问题 (笔者使用的是openwrt系统)

 

分析:

  1. ’Failed to find the folder holding the modules‘这句log从哪里来?

    要知道从哪里来,那么扒一扒insmod这个工具的源码吧

    1.1 注意:在openwrt下使用的是kmodloader作为insmod工具

      ls -lh /sbin/insmod
      lrwxrwxrwx 1 root root 10 Jul 17 09:17 /sbin/insmod -> kmodloader

  2. 获取kmodloader工具源码(kmodloader是ubox的一个子集)

    git clone git://git.openwrt.org/project/ubox.git

    cd ubox

  3. 分析kmodloader工具源码

    3.1 在kmodloader.c文件的main_insmod中发现了以下代码:

if (init_module_folders()) {
                fprintf(stderr, "Failed to find the folder holding the modules\n");
                ret = -1;
                goto err;
        }

     

  

insmod内核模块时提示Failed to find the folder holding the modules怎么办?

标签:内核   注意   代码   ade   linux   roo   stderr   模块   nbsp   

原文地址:https://www.cnblogs.com/dakewei/p/11209258.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!