分类:
2008-04-18 11:51:08
按照《从入门到精通》中的步骤编译内核,出现了如下问题: (1)arm-linux-gcc: command can not found. 解决方法:修改Makefile时,CROSS_COMPILE的更改采用绝对路径。 (2)提示linux/mtd/partitions.h中的61行:field 'list' is an incomplete type.解决方法:由于list_head定义于list.h,在partitions.h中包含之,问题解决。 (3)superlpplatform undeclared here(not in a function). 解决办法:在devs.h中声明之。 (4)安装模块时,Warning: you may need to install module-init-tools。 解决方法: 下载module-init-tools-3.0.tar.gz源码包的地方是: 然后make module_install |