天天看点

Centos配置为驱动程序开发环境

安装完centos后,写了一个驱动测试程序hello。编译过程出现如下错误:

make: *** /lib/modules/2.6.32-220.4.1.el6.i686/build: no such file or directory.  stop.

make: *** [all] error 2

但是用ls查询了一下,该文件明明存在。上网搜集,终于明白了。

需要安装很多kernel相关的编译软件。需要安装的软件如下:

 1:kernel-firmware       

 2:kernel               

 3:kernel-debug          

 4:kernel-headers        

 5:kernel-doc             

 6:kernel-devel           

 7:kernel-debug-deve

安装完成之后,即可以make成功。

参考:

<a href="http://www.linuxidc.com/linux/2012-05/60662p2.htm">http://www.linuxidc.com/linux/2012-05/60662p2.htm</a>

<a href="http://scientificlinuxforum.org/index.php?showtopic=1432">http://scientificlinuxforum.org/index.php?showtopic=1432</a>

继续阅读