开发者

Where's my module gone?

开发者 https://www.devze.com 2023-02-18 23:22 出处:网络
make -C /usr/src/linux-2.6.32.9 M=`pwd` LD/root/test/lkm/built-in.o Buil开发者_运维技巧ding modules, stage 2.
    make -C /usr/src/linux-2.6.32.9 M=`pwd` 

  LD      /root/test/lkm/built-in.o
  Buil开发者_运维技巧ding modules, stage 2.
  MODPOST 1 modules
make: Leaving directory `/usr/src/linux-2.6.32.9'

    make -C /usr/src/linux-2.6.32.9 M=`pwd` modules_install

  INSTALL /root/test/lkm/try.ko
  DEPMOD  2.6.32.9

But when I lsmod |grep try,nothing is shown,why?


INSTALL doesn't load the module, it just copies it to its final location. Try insmod /root/test/lkm/try.ko.

0

精彩评论

暂无评论...
验证码 换一张
取 消