全部博文(685)
发布时间:2014-05-09 09:56:20
存放目录:uboot/lib/string.c二级指针应用:CHAR **ppstResult;*ppstResult = (CHAR *)VOS_Malloc(PID_CWMP, CWMP_BUILDRUNBUF);VOS_MemSet(*ppstResult, 0x0, CWMP_BUILDRUNBUF);VOS_Mem_Copy(*ppstResult, "\r\n Error: The password length must be less than 256.",VOS_strlen("\r\n .........【阅读全文】
发布时间:2014-04-19 15:24:59
原文地址:http://blog.csdn.net/xieweihua2012/article/details/8470948接上篇,分析uboot对开发板的初始化,入口在arch/arm/lib/board.c文件里面的 board_init_f函数voidboard_init_f (ulong bootflag){ …… &nbs.........【阅读全文】
发布时间:2014-04-19 15:22:15
原文地址:http://blog.csdn.net/xieweihua2012/article/details/8252423该uboot系列的版本是uboot-2010.12,基于samsung的4412芯片Uboot里面的字母u代表了“通用”的意思,因此,为了编译出符合特定CPU,特定电路板的启动代码,就必须首先进行配置,告诉编译器需要编译成什么样的体系架构,什么样的cpu等等。下.........【阅读全文】