标签:bs ef linux 安装 file 编程 return c print
/*****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);
obj-m := hello.o
make -C /usr/src/kernel-source M=`pwd` modules
安装驱动:insmod hello.ko
查看驱动:lsmod
卸载驱动:rmmod hello
标签:bs ef linux 安装 file 编程 return c print
原文地址:http://www.cnblogs.com/feilv/p/4065509.html