Hi, I have kernel version 5.15.136-tegra installed, unfortunately it does not have the slcan module. Did other kernel versions have the slcan module or is it possible to install this module on an existing system?
I know nothing about this particular driver/feature. That said, if you have the matching kernel source, and you configure that source to exactly match the running kernel (including a correct CONFIG_LOCALVERSION
), then you can add the feature as a module to produce a file (not all features can be a module, but most can). Then it is just a file copy to the correct location, followed by “sudo depmod -a
”.
Incidentally, since this is showing as 5.15.136-tegra
, the implication is that your current CONFIG_LOCALVERSION
is “-tegra
”. If you match the config of the purely 5.15.136
source to what is running, and then set CONFIG_LOCALVERSION
to “-tegra
”, you should be able to add any module feature you want.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.