Closed pompushko closed 1 year ago
insmod
does not necessarily load depending modules like can.ko
Please run modprobe can
before the insmod
Yeah. Indeed. That helped me.. Thank you!
Also, how can I load that module during system startup? Because for now I should do that:
sudo modprobe -r can_isotp
sudo insmod ./net/can/can-isotp.ko
Only after reloading can-isotp module all start works fine. Thank you.
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.
# Parameters can be specified after the module name.
can
can_isotp
vcan
can_raw
Hello
I tried to test new branch on Ubuntu 23.10 with 6.5.0-10-generic x86_64 kernel
And when I trying to insert new module:
Thank you