|
|

楼主 |
发表于 2005-2-7 12:30:37
|
显示全部楼层
初步解决
看了LFS文档...linux-kernel-libc..那段,在kernel目录里执行
- 6.9.1. Installation of Linux-Libc-Headers
- Install the header files:
- cp -R include/asm-i386 /usr/include/asm
- cp -R include/linux /usr/include
- Assure that all the headers are owned by root:
- chown -R root:root /usr/include/{asm,linux}
- And make sure all the users can read the headers:
- find /usr/include/{asm,linux} -type d -exec chmod 755 {} \;
- find /usr/include/{asm,linux} -type f -exec chmod 644 {} \;
复制代码
就可以编译内核了...老天保佑,不要失败.... |
|