on my kernel-6.6.22 NSS build for a dynalink wrx36, I noticed that the qca-nss-* init scripts were failing to load the required kernel modules when I ran
service qca-nss-<...> [re]start
I went through the various /etc/init.d/qca-nss-* scripts and replaced all occurrences of insmod with modprobe and all occurrences of rmmod with modprobe -r. After this, the services could correctly load/unload the relevant qca-nss-* kmods.
Im not sure if this problem occurs on devices other than the dynalink wrx36, and my config has been customized enough Im not even sure if modprobe comes standard. But, this fix made things work right for me.
on my kernel-6.6.22 NSS build for a dynalink wrx36, I noticed that the
qca-nss-*
init scripts were failing to load the required kernel modules when I ranI went through the various
/etc/init.d/qca-nss-*
scripts and replaced all occurrences ofinsmod
withmodprobe
and all occurrences ofrmmod
withmodprobe -r
. After this, the services could correctly load/unload the relevantqca-nss-*
kmods.Im not sure if this problem occurs on devices other than the dynalink wrx36, and my config has been customized enough Im not even sure if
modprobe
comes standard. But, this fix made things work right for me.