发布时间:2012-12-20 21:38:25
ssize_t是signed size_t,size_t是标准C库中定义的,应为unsigned int。使用强制转换可于int类型进行转换......【阅读全文】
发布时间:2012-12-19 20:06:59
文章引自:https://www.ibm.com/developerworks/cn/linux/l-btloader/1. 引言 在专用的嵌入式板子运行 GNU/Linux 系统已经变得越来越流行。一个嵌入式 Linux 系统从软件的角度看通常可以分为四个层次: 1. 引导加载程序。包括固化在固件(firmware)中的 boot 代码(可选),和 Boot Loader 两大部分。 2. Linux 内核。特定于嵌入式板子的定制内核以及内核的启动参数。 3. 文件系统。包括根文件系统和建立于 Flash 内存设备之上文件系统。通常用 ram disk 来作为 root fs。 ......【阅读全文】
发布时间:2012-12-11 22:06:18
makefile 伪目标 clean 执行时候才用 make clean 注意“-”的作用......【阅读全文】
发布时间:2012-12-11 21:26:07
diff的输出格式分为传统格式和统一格式1)diff的传统格式输出.############################################cat before.txt输出:This is a line to be deletedThis is a line that will be changedThis is a line that will be unchangedcat after.txt输出: This is a line that has been changedThis is a line that will be unchangedThis is a line ......【阅读全文】