I'm using Slitaz 3.0 stable. Just now, I compiled the kernel module "wistron_btns.ko". The compilation exited with no errors/warnings. Here are the steps I did:
cd /usr/src/linux-2.6.30.6-slitaz nano .config "# CONFIG_INPUT_WISTRON_BTNS is not set" changed to "ONFIG_INPUT_WISTRON_BTNS=m"
make CONFIG_INPUT_WISTRON_BTNS=m M=drivers/input/misc mkdir -p /lib/modules/2.6.30.6-slitaz/kernel/drivers/input/misc cp drivers/input/misc/wistron_btns.ko /lib/modules/2.6.30.6-slitaz/kernel/drivers/input/misc depmod -a modprobe wistron_btns
But modprobe gave me the following message:
insmod: cannot insert '/lib/modules/2.6.30.6-slitaz/kernel/drivers/input/misc/wistron_btns.ko': unknown symbol in module modprobe: failed to load module wistron_btns: No such file or directory
Does anyone know what exactly is missing?
Thanks for any kind of help in advance.
Edit: dmesg showed, that check_signature was missing. How could I solve this problem?