这里有几个重要的地方需要注意: System Type --> ARM system type () --> 这个地方一定要选择和你的板子相同的类型,我们针对的开发板是s3c2410这里选择s3c2410。 在内核为2.4的时候,minicom默认的串行端口为ttyS0,在2.6里为ttySAC0 所以Boot Option --> Default kernel command string里输入 console=ttySAC0,115200 (115200为波特率)
关闭console display driver support 所有相关选项否则编译出错。 配置好以后,退出保存,默认保存在.config里.
3.编译内核: make clean 不能用make mrproper,如果使用了它,它将刚才的config清理掉 make dep
编译相关依赖文件 make zImage 最终的编译命令,有时可以直接用make(2.6.x版本以上). 最后编译好的镜像文件放在/linux-2.6.24/arch/arm/boot/zImage