to be myself
发布时间:2013-03-03 12:54:09
linux2.6.32.2在proc文件系统下创建proc节点的函数是proc_create("mybuf", S_IRUSR, NULL, &proc_mybuf_operations);对应的移除函数是remove_proc_entry("mybuf", NULL);与创建的/proc/mybuf操作相关的函数是proc_mybuf_operations,这个跟字符设备.........【阅读全文】
发布时间:2013-03-03 12:34:34
问题描述:crw-rw---- 1 root root 90, 0 Apr 23 12:22 /dev/mtd0crw-rw---- 1 root root 90, 1 Apr 23 12:22 /dev/mtd0rocrw-rw----.........【阅读全文】
发布时间:2013-03-03 12:32:39
在编写linux设备驱动程序的时候,如果在不参考已有驱动程序的情况下,我们该如何不多不少地用#include包含所需的头文件呢? 下面,来通过一个实验来介绍。运行环境:Source Insight @ Windows xp内核代码:Linux 2.6.32实验代码: 简单ramblock实验点击(此处)折叠.........【阅读全文】
发布时间:2013-03-03 12:25:38
应该注意版本更新函数的变化。内核版本:2.6.32-24-generic点击(此处)折叠或打开#include <linux/module.h>#include <linux/fs.h>#include <linux/types.h>#include <linux/genhd.h>#include <linux/blkdev.........【阅读全文】