uboot中start.S详解 时间:2013-03-28 10:13:17 【文件属性】: 文件名称:uboot中start.S详解 文件大小:45KB 文件格式:DOC 更新时间:2013-03-28 10:13:17 uboot uboot中start.S详解 #include #include /* 这段代码的主要作用是初始化硬件设备、建立内存空间的映射图,从而将系统的软硬件环境带到一个合适的状态,以便为最终调用操作系统内核准备好正确的环境 */ #if defined(CONFIG_OMAP1610) #include <./configs/omap1510.h> #elif defined(CONFIG_OMAP730) #include <./configs/omap730.h> #endif 立即下载