码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 最简单的驱动程序hello world

时间:2015-11-02 13:54:29      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

1,进入/code/v1/kernel-3.10/drivers/,新建mkdir hello

  新建hello.c

#include<linux/init.h>
#include<linux/module.h>
MODULE_LICENSE("Dual BSD/GPL");

static int hello_init(void)
{
printk(KERN_ALERT "Hello,init the module!");
return 0;
}

static void hello_exit(void)
{
printk(KERN_ALERT "Goodbye,exit the module!");
}

module_init(hello_init);
module_exit(hello_exit);

 

2,新建Makefile

 obj-y += hello.o

 

3,编译。

make bootimage

Linux 最简单的驱动程序hello world

标签:

原文地址:http://www.cnblogs.com/senior-engineer/p/4929870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!