内核编程实例,多文件的Makefile

经典的hello word测试

  1. ////# cat hello.c
  2. #include <linux/module.h>
  3. #include <linux/kernel.h>
  4. #include <linux/init.h>
  5. static int __init hl_init( void )
  6. {
  7. printk("Hello,World! init\n");
  8. return 0;
  9. }
  10. static void __exit hl_cleanup( void )
  11. {
  12. printk("Goodbye, World! cleanup\n");
  13. }
  14. module_init(hl_init);
  15. module_exit(hl_cleanup);
  16. MODULE_LICENSE("GPL");

经典的由单个c文件产生模块的Makefile。

  1. # cat Makefile
  2. obj-m += hello.o
  3. CURRENT_PATH := $(shell pwd) #模块所在的当前路径
  4. LINUX_KERNEL := $(shell uname -r) #Linux内核源代码的当前版本
  5. LINUX_KERNEL_PATH := /usr/src/kernels/$(LINUX_KERNEL) #Linux内核源代码的绝对路径
  6. all:
  7. make -C $(LINUX_KERNEL_PATH) M=$(CURRENT_PATH) modules #编译模块了
  8. clean:
  9. make -C $(LINUX_KERNEL_PATH) M=$(CURRENT_PATH) clean #清理

编译

Make
就产生了hello.ko。

安装

insmod hello.ko

卸载

rmmod hello

查看log

dmesg

    1. ................
    2. [12238.051159] Hello,World! init
    3. [12242.458122] Goodbye, World! cleanup
[]中的是时间戳。

多文件
我升级下,两个文件,hello.c和timer.c ,就是每隔一秒输出点东西来,开始输出hello init, 退出时输出exit。
hello.c

  1. #include <linux/module.h>
  2. #include <linux/kernel.h>
  3. #include <linux/init.h>
  4. extern void timer_exit(void);
  5. extern int timer_init(void);
  6. static int __init hl_init( void )
  7. {
  8. printk("Hello,World! init\n");
  9. timer_init();
  10. return 0;
  11. }
  12. static void __exit hl_cleanup( void )
  13. {
  14. timer_exit();
  15. printk("Goodbye, World! cleanup\n");
  16. }
  17. module_init(hl_init);
  18. module_exit(hl_cleanup);
  19. MODULE_LICENSE("GPL");

timer.c

  1. #include <linux/timer.h>
  2. static struct timer_list my_timer;
  3. //定时函数
  4. void tm_say(unsigned long arg){
  5. printk( "timer do >>>>>>\n");
  6. mod_timer(&my_timer,jiffies+HZ);
  7. }
  8. //初始化模块和定时器
  9. int timer_init(void)
  10. {
  11. init_timer(&my_timer);
  12. my_timer.data=0;
  13. my_timer.function =tm_say;
  14. my_timer.expires = jiffies+HZ;
  15. //定时一秒钟
  16. add_timer(&my_timer);
  17. printk(KERN_EMERG "timer_k module inserted\n");
  18. return 0;
  19. }
  20. void timer_exit(void)
  21. {
  22. del_timer(&my_timer);
  23. printk("timer_k module exited\n");
  24. }

Makefile

  1. obj-m := hhh.o
  2. hhh-objs := hello.o timer.o
  3. KERNELBUILD := /lib/modules/`uname -r`/build
  4. default:
  5. echo " BUILD kmod"
  6. make -C $(KERNELBUILD) M=$(shell pwd) modules
  7. clean:
  8. make -C $(KERNELBUILD) M=$(shell pwd) clean

关键就是,target_name后面的"-objs"的指引。
编吧,make , insmod hhh.ko 等下 再 rmmod hhh 看看 dmes

  1. [16324.230095] Hello,World! init
  2. [16324.230095] timer_k module inserted
  3. [16325.232644] timer do >>>>>>
  4. [16326.237437] timer do >>>>>>
  5. [16327.244518] timer do >>>>>>
  6. [16328.247633] timer do >>>>>>
  7. [16329.248125] timer do >>>>>>
  8. [16329.864092] timer_k module exited
  9. [16329.864092] Goodbye, World! cleanup

经典的hello word测试

  1. ////# cat hello.c
  2. #include <linux/module.h>
  3. #include <linux/kernel.h>
  4. #include <linux/init.h>
  5. static int __init hl_init( void )
  6. {
  7. printk("Hello,World! init\n");
  8. return 0;
  9. }
  10. static void __exit hl_cleanup( void )
  11. {
  12. printk("Goodbye, World! cleanup\n");
  13. }
  14. module_init(hl_init);
  15. module_exit(hl_cleanup);
  16. MODULE_LICENSE("GPL");

经典的由单个c文件产生模块的Makefile。

  1. # cat Makefile
  2. obj-m += hello.o
  3. CURRENT_PATH := $(shell pwd) #模块所在的当前路径
  4. LINUX_KERNEL := $(shell uname -r) #Linux内核源代码的当前版本
  5. LINUX_KERNEL_PATH := /usr/src/kernels/$(LINUX_KERNEL) #Linux内核源代码的绝对路径
  6. all:
  7. make -C $(LINUX_KERNEL_PATH) M=$(CURRENT_PATH) modules #编译模块了
  8. clean:
  9. make -C $(LINUX_KERNEL_PATH) M=$(CURRENT_PATH) clean #清理

编译

Make
就产生了hello.ko。

安装

insmod hello.ko

卸载

rmmod hello

查看log

dmesg

    1. ................
    2. [12238.051159] Hello,World! init
    3. [12242.458122] Goodbye, World! cleanup
[]中的是时间戳。

多文件
我升级下,两个文件,hello.c和timer.c ,就是每隔一秒输出点东西来,开始输出hello init, 退出时输出exit。
hello.c

  1. #include <linux/module.h>
  2. #include <linux/kernel.h>
  3. #include <linux/init.h>
  4. extern void timer_exit(void);
  5. extern int timer_init(void);
  6. static int __init hl_init( void )
  7. {
  8. printk("Hello,World! init\n");
  9. timer_init();
  10. return 0;
  11. }
  12. static void __exit hl_cleanup( void )
  13. {
  14. timer_exit();
  15. printk("Goodbye, World! cleanup\n");
  16. }
  17. module_init(hl_init);
  18. module_exit(hl_cleanup);
  19. MODULE_LICENSE("GPL");

timer.c

  1. #include <linux/timer.h>
  2. static struct timer_list my_timer;
  3. //定时函数
  4. void tm_say(unsigned long arg){
  5. printk( "timer do >>>>>>\n");
  6. mod_timer(&my_timer,jiffies+HZ);
  7. }
  8. //初始化模块和定时器
  9. int timer_init(void)
  10. {
  11. init_timer(&my_timer);
  12. my_timer.data=0;
  13. my_timer.function =tm_say;
  14. my_timer.expires = jiffies+HZ;
  15. //定时一秒钟
  16. add_timer(&my_timer);
  17. printk(KERN_EMERG "timer_k module inserted\n");
  18. return 0;
  19. }
  20. void timer_exit(void)
  21. {
  22. del_timer(&my_timer);
  23. printk("timer_k module exited\n");
  24. }

Makefile

  1. obj-m := hhh.o
  2. hhh-objs := hello.o timer.o
  3. KERNELBUILD := /lib/modules/`uname -r`/build
  4. default:
  5. echo " BUILD kmod"
  6. make -C $(KERNELBUILD) M=$(shell pwd) modules
  7. clean:
  8. make -C $(KERNELBUILD) M=$(shell pwd) clean

关键就是,target_name后面的"-objs"的指引。
编吧,make , insmod hhh.ko 等下 再 rmmod hhh 看看 dmes 
[16324.230095] Hello,World! init

  1. [16324.230095] timer_k module inserted
  2. [16325.232644] timer do >>>>>>
  3. [16326.237437] timer do >>>>>>
  4. [16327.244518] timer do >>>>>>
  5. [16328.247633] timer do >>>>>>
  6. [16329.248125] timer do >>>>>>
  7. [16329.864092] timer_k module exited
  8. [16329.864092] Goodbye, World! cleanup

内核编程实例,多文件的Makefile的更多相关文章

  1. 《天书夜读:从汇编语言到windows内核编程》八 文件操作与注册表操作

    1)Windows运用程序的文件与注册表操作进入R0层之后,都有对应的内核函数实现.在windows内核中,无论打开的是文件.注册表或者设备,都需要使用InitializeObjectAttribut ...

  2. HDFS简单编程实例:文件合并

    下图显示了HDFS文件系统中路径为“localhost:50070/explorer.html#/user/hadoop”的目录中所有的文件信息: 对于该目录下的所有文件,我们将执行以下操作: 首先, ...

  3. Win64 驱动内核编程-29.强制解锁文件

    强制解锁文件 强制解锁因其他进程占用而无法删除的文件. 1.调用 ZwQuerySystemInformation 的 16 功能号来枚举系统里的句柄 2.打开拥有此句柄的进程并把此句柄复制到自己的进 ...

  4. linux内核模块编程实例

    linux内核模块编程实例 学号:201400814125 班级:计科141 姓名:刘建伟 1.确定本机虚拟机中的Ubuntu下Linux的版本 通过使用命令uname -a/uname -r/una ...

  5. 初探linux内核编程,参数传递以及模块间函数调用

    一.前言                                  我们一起从3个小例子来体验一下linux内核编程.如下: 1.内核编程之hello world 2.模块参数传递 3.模块间 ...

  6. 如何搭建Visual Studio的内核编程开发环境

    最近正在看<寒江独钓——Windows内核安全编程>这本书,感觉这本书非常好,有兴趣的朋友可以买来看看,有关这本书的信息请参考:http://www.china-pub.com/19559 ...

  7. Linux内核编程规范与代码风格

    source: https://www.kernel.org/doc/html/latest/process/coding-style.html translated by trav, travmym ...

  8. Android 开发手记一NDK编程实例

    在Android上,应用程序的开发,大部分基于Java语言来实现.要使用c或是c++的程序或库,就需要使用NDK来实现.NDK是Native Development Kit的简称.它是一个工具集,集成 ...

  9. 内核源码之Kconfig和Makefile

    转自:http://www.cnblogs.com/image-eye/archive/2011/08/28/2156005.html 内核源码之Kconfig和Makefile Linux内核源码树 ...

随机推荐

  1. 【一】仿微信飞机大战cocos2d-x3.0rc1

    參考 [偶尔e网事] 的 [cocos2d-x入门实战]微信飞机大战  cocos2dx 2.0版本号,偶尔e网事他写的很具体,面面俱到,大家很有必要看下.能够通过以下链接跳转: cocos2d-x入 ...

  2. 手动制作rpm包

    制作RPM包的过程,简单的说,就是为制作过程提供一个“工作车间”,即一个目录,里面需要包含以下几个子目录: BUILD        ————编译相关源码包时的工作目录: RPMS         — ...

  3. 在eclipse上安装 sdk出现的各种问题

    在eclipse上下进行android开发需要  有android SDK 和ADT 一般adt版本瑶台低, 会被提示安装较高版本的ADT,  不然, SDK可能无法使用 在安装 SDK过程中出现这样 ...

  4. Linux开机启动十步骤

    启动第一步--加载BIOS 启动第二步--读取MBR 启动第三步--Boot Loader 启动第四步--加载内核 启动第五步--用户层init依据inittab文件来设定运行等级 启动第六步--in ...

  5. 在mac os 中安装 autoconf and automake

    转载地址:http://www.mattvsworld.com/blog/2010/02/install-the-latest-autoconf-and-automake-on-mac-os-10-6 ...

  6. jQuery 简单滑动轮播图效果

    一般页面简单轮播图效果用jQuery制作更加简单.我们来看看以下效果是如何来进行制作的. 其html结构下所示: <div id="box">         < ...

  7. Android 使用SpannableString显示复合文本

    http://blog.csdn.net/feizhixuan46789/article/details/10334441 http://www.th7.cn/Program/Android/2014 ...

  8. 转:git windows中文 乱码问题解决汇总

    it的Windows版本Msysgit对中文的支持不够好 .当使用时,会出现以下三种情况的中文乱码: 下面的几个文件都在git安装目录下文件夹etc内.1.ls不能显示中文目录 解决办法:在git/g ...

  9. Js脚本实现选项卡的实例

    效果演示: 具体代码: <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http:/ ...

  10. BNU Questions and answers

    http://www.bnuoj.com/bnuoj/problem_show.php?pid=2490 这个题是先输入一个整数n,说明有几个数据,然后输入n个整数,然后用三个#分开,后面输入整数k, ...