码迷,mamicode.com
首页 > 其他好文 > 详细

初级驱动模板之【hello】

时间:2015-05-15 21:25:04      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:linux内核   kernel   gpl   内核   linux   


linux内核模块基本组成

===============
1. 模块头文件
#include<linux/init.h>
#include<linux/module.h>


2. 模块加载函数(入口函数)
初始化工作


3. 模块卸载函数
一般跟加载函数完成相反的工作


4. 模块许可声明

"GPL" : 表示你有发布软件的自由

/*************************************************************************
	> File Name: hello.c
	> Author: 梁惠涌
	> Addr:
	> Created Time: 2015年05月15日 星期五 20时16分57秒
 ************************************************************************/
//1  头文件
#include<linux/init.h>
#include<linux/module.h>

//2  模块加载
static int  __init hello_init(){
    printk(KERN_INFO"hello is module!\n");
    return 0;
}

//3  模块卸载
static void __exit hello_exit(){
    printk(KERN_INFO"hello is unmod!\n");
}

//4  模块许可声明
module_init(hello_init);
module_exit(hello_exit);
MODULE_LICENSE("GPL");


ifeq ($(KERNELRELEASE),)
	KERNELDIR =/home/farsight/work/kernel/linux-3.0.8
	PWD =$(shell pwd)
modules:
	$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
	cp hello.ko /opt/filesystem/s5pv210
modules_install:
	$(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
clean:
	rm -rf *.so *.o *.ko  .tmp_versions *.mod.c *.order *.symvers 
else
	obj-m :=hello.o
endif

技术分享

初级驱动模板之【hello】

标签:linux内核   kernel   gpl   内核   linux   

原文地址:http://blog.csdn.net/muyang_ren/article/details/45749659

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