This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

FATAL: Module dsplinkk not found

Hello.

Using [ti-dvsdk_omapl138-evm_4_01_00_09],
I installed "dsplink" and "cmem" below command.

 make cmem
make cmem_install
make dsplink
make dsplink_install

and then boot, I've got error messages below.

 modprobe: FATAL: Could not open 'kernel/net/ipv6/ipv6.ko': No such file or directory

Starting syslogd/klogd: done

Starting thttpd.
FATAL: Module cmemk not found.
FATAL: Module dsplinkk not found.

and I added  2 lines below on "/lib/modules/2.6.33-rc4/modules.dep"
but, it still remains that error.

kernel/drivers/dsp/cmemk.ko
kernel/drivers/dsp/dsplinkk.ko

After boot, it is possible to load each module by "insmod xxx" command .
so it's not the difference problem of kernel version.

how can I fix this error.

 Thanyou for your concern.

  • Hi Seyoung,

    Please verify that you have done the following:

    - The files dsplinkk.ko and cmemk.ko that you have compiled need to be copied into the /lib/modules/<kernel_version>/kernel/drivers/dsp/ directory. Note that typically make install puts the files in EXEC_DIR, so if your EXEC_DIR points to a different location e.g. /home/root on the filesystem you would need to manually copy the files over.

    - Make sure you run '/sbin/depmod -a' after the copy to update the dependency file for modprobe to use. Judging from your post, I'd say this is more likely to be your issue.

    Best regards,

    Vincent

     

  • Thank you, Vincent,

    Your comment was helpful.