Forum Discussion
Altera_Forum
Honored Contributor
20 years agobusybox rmmod doesn't work?
Hi! I have a module with following source code: #include <linux/kernel.h># include <linux/init.h># include <linux/module.h>
int __init hello_init(void)
{
printk("----------->Hello, w...
Altera_Forum
Honored Contributor
20 years agoHi Doug!
You are right. With a static declaration of the init function command rmmod works:-) # busybox rmmod hello------------>goodbye, cruel world# Thank you, Lothar.