Hello World 模块
#include <linux/init.h>
#include <linux/module.h>
MODULE_LICENSE("Dual BSD/GPL");
static int hello_init(void)
{
printk(KERN_ALERT "hello_world\n");
return 0;
}
static void hello_exit(void)
{
printk(KERN_ALERT "goodbye\n");
}
module_init(hello_init);
module_init(hello_exit);#include <linux/init.h>
#inclu