linux2.6驱动的编写实例

以hello world的2.6版为例子,介绍linux2.6驱动的编写。

源程序:

#include
#include
#include

MODULE_LICENSE("GPL");//必有的说明

static int hello_init(void) {
printk(KERN_ALERT"Hello, world\n");
return 0;
}
static void hello_exit(void) {
printk("Goodbye, cruel world\n");
}

module_init(hello_init);
module_exit(hello_exit);

编译文件(makefile),最好不要粘贴,存在格式问题,手动敲一下,这是简单形式,省略了一些判断语句。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzwfyj.html