第一个驱动,其实只是在装置和卸载的时候打印两句话而已,算是启程吧
#include <linux/init.h>
#include <linux/module.h>
char *words="mry";
static int hello_init(void)
{
printk(KERN_ALERT "Hello,%s!\n",words);
return 0;
}
static void hello_exit(void)
{
printk(KERN_ALERT "Goodbye,%s!\n",words);
}
MODULE_LICENSE("Dual BSD/GPL");
module_init(hello_init);
module_exit(hello_exit);
|
阅读(939) | 评论(0) | 转发(0) |