1.标准的module代码如下:
helloworld.c
#include <linux/kernel.h>
#include<linux/module.h>
#include<linux/init.h>
MODULE_LICENSE("GPL");
static int hello_init(void)
{
printk(KERN_WARNING "HELLOWORLD");
return 0;
}
static void hello_exit(void)
{
printk("BYE");
}
module_init(hello_init);
module_exit(hello_exit);
2.标准的Makefile文件如下: