Linux Device Driver study: scull TIPS

用到的例子为Linux设备驱动程序中的源码。

 

存在的问题和解决方法:

1、关于CFLAG的错误。将Makefile中的CFLAG项全部屏蔽即可;

2、提示linux/config.h no such file or directory。在/usr/src/linux-source..../include/linux中创建config.h即可(例:touch /usr/src/linux-source-2.6.35/include/linux/config.h   实际路径中没有config.h)

3、提示TASK_INTERRUPTIBLE undeclared,增加头文件#include <linux/sched.h>即可;

4、struct task_struct has no member name uid,增加头文件 #include <linux/cred.h>,同时将current->uid改成current->cred->uid,将current->euid改为current->cred->euid即可;(原因在于新内核数据结构发生了变化,将uid和euid放入cred结构中,参考:http://hi.baidu.com/swinggucas/blog/item/32e1d3c3d4eacf3ee4dd3b22.html)

 

小结:内核升级后,对相应数据结构或头文件的引用进行了修改,因此会存在上述的2、3、4等问题。

 

编译成功后,insmod scull.ko   用vim打开/proc/devices会看到scull作为字符模块存在

 

参考资料:

1、关于问题2:http://ubuntuforums.org/showthread.php?t=417072

2、关于问题3:http://www.gossamer-threads.com/lists/linux/kernel/1140561

3、关于问题4:http://hi.baidu.com/swinggucas/blog/item/32e1d3c3d4eacf3ee4dd3b22.html

 

你可能感兴趣的:(数据结构,linux,struct,File,vim,makefile)