linux驱动编程入门实例

编辑

/*****hello.c*******/

#include <linux/init.h>

#include <linux/module.h>

#include <linux/kernel.h>

MODULE_LICENSE("Dual BSD/GPL");

static int hello_init() {

  printk("<1>hello\n");

  return 0;

}

static void hello_exit() {

  printk("<1>bye\n");

}

module_init(hello_init);

module_exit(hello_exit);

makefile

  obj-m := hello.o

编译

make -C /usr/src/kernel-source M=`pwd` modules

运行

安装驱动:insmod hello.ko

查看驱动:lsmod

卸载驱动:rmmod hello

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。