I'm compiling Yocto on kirkstone branch
Hi @epoletaev
Can you please elaborate more which kernel module you want to load?
Please change your kernel configuration file accordingly.
Thanks
Khsuhbu
Every module that listed in /boot/modules are not loading by name and only loading by full path
insmod any
Not found
insmod /boot/modules/full/path/any.ko
Loaded
Lets say for example usbserial.ko
Hi @epoletaev
Can you please try with modprobe
Please run below command
sudo ln -s /path/to/module_name.ko /lib/modules/`uname -r`
sudo depmod -a
sudo modprobe module_name
Thanks
Khushbu
That would work, but it is just workaround is there real fix for the issue?