随笔分类 -  Linux

上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
Linux 应用编程、驱动编程、内核知识、读书笔记
摘要:http://pan.baidu.com/s/1mgtACVu其中是我总结生成的一些文档,以便于理解当我们输入make uImage后,系统是怎么一步一步生成uImage的,我采用的是逆向分析的方法。Linux内核的编译结构还是挺复杂的,我分析的还不到位,文档还有欠缺。下面是缩略图,在共享的目录中有... 阅读全文
posted @ 2014-05-19 20:05 摩斯电码 阅读(422) 评论(3) 推荐(1) 编辑
摘要:转载:http://www.cnblogs.com/leaven/archive/2010/08/06/1794293.html更多文档参见:http://pan.baidu.com/s/1dDvJRaD作者:刘洪涛,华清远见嵌入式学院金牌讲师,ARM ATC授权培训讲师。看了一些网络上关于linu... 阅读全文
posted @ 2014-05-10 11:45 摩斯电码 阅读(1303) 评论(0) 推荐(0) 编辑
摘要:转载:http://www.kernelchina.org/node/1050linux的list实现之中有如下东东:#define list_for_each(pos, head) \ for (pos = (head)->next; prefetch(pos->next), pos != (h... 阅读全文
posted @ 2014-05-08 19:52 摩斯电码 阅读(925) 评论(0) 推荐(0) 编辑
摘要:转载:http://www.ibm.com/developerworks/cn/linux/l-gcc-hacks/?S_TACT=105AGX52&S_CMP=tec-csdnLinux 内核中的 GCC 特性了解用于 C 语言的 GCC 扩展Linux® 内核使用 GNU Compiler Co... 阅读全文
posted @ 2014-05-08 19:47 摩斯电码 阅读(662) 评论(0) 推荐(0) 编辑
摘要:内核版本: linux-2.6.30.4文件:linux-2.6.30.4/arch/arm/kernel/entry-common.Slinux-2.6.30.4/arch/arm/kernel/calls.Scalls.S: 1: /* 2: * linux/arch/arm/ker... 阅读全文
posted @ 2014-05-07 23:01 摩斯电码 阅读(1533) 评论(0) 推荐(0) 编辑
摘要:uboot kernel uboot 1、Uboot编译流程分析: uboot是如何编译生成的? 2、根据include/configs/$(target).h可以生成include/autoconf.mk。 3、Uboot_env 分析 4、uboot 之 run_command函数的实现 5、u 阅读全文
posted @ 2014-05-07 21:51 摩斯电码 阅读(856) 评论(0) 推荐(0) 编辑
摘要:stddef.h#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) list.h#ifndef _LINUX_LIST_H #define _LINUX_LIST_H#include #inclu... 阅读全文
posted @ 2014-05-06 18:54 摩斯电码 阅读(1445) 评论(0) 推荐(0) 编辑
摘要:转载:http://blog.csdn.net/npy_lp/article/details/7335187内核源码:linux-2.6.38.8.tar.bz2 目标平台:ARM体系结构 进程是处于执行期的程序以及它所管理的资源(如打开的文件、挂起的信号、进程状态、地址空间等等)的总称。注意,... 阅读全文
posted @ 2014-05-06 14:52 摩斯电码 阅读(2630) 评论(0) 推荐(0) 编辑
摘要:转载: http://blog.csdn.net/fanqipin/article/details/8019512一.input子系统简介: linux系统中,input输入子系统驱动主要可以分为:设备驱动层、input core层和input handler事件处理层。设备驱动层为具体用户设... 阅读全文
posted @ 2014-05-03 22:08 摩斯电码 阅读(859) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-05-02 22:32 摩斯电码 阅读(443) 评论(0) 推荐(0) 编辑
摘要:更多文档:http://pan.baidu.com/s/1jGzEzbw输入子系统在内核中的位置:/driver/inputdrivers/input/input.c: input_init ---> err = register_chrdev(INPUT_MAJOR, "input", &inpu... 阅读全文
posted @ 2014-05-02 22:28 摩斯电码 阅读(690) 评论(0) 推荐(0) 编辑
摘要:http://files.cnblogs.com/pengdonglin137/reg_tool_tq2440.7z 阅读全文
posted @ 2014-05-01 20:16 摩斯电码 阅读(533) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-04-25 23:36 摩斯电码 阅读(542) 评论(0) 推荐(0) 编辑
摘要:转载:http://blog.csdn.net/adaptiver/article/details/72259801. 引子编译2.6.35.7 kernel版本的时候发现,“2.6.35.7“的内核版本编译成功后生成的版本号变成了“2.6.35.7+”,为什么后面会多一个加号呢?问题出现在linu... 阅读全文
posted @ 2014-04-24 16:18 摩斯电码 阅读(948) 评论(0) 推荐(1) 编辑
摘要:http://pan.baidu.com/s/1sjIwswP 阅读全文
posted @ 2014-04-12 09:26 摩斯电码 阅读(347) 评论(0) 推荐(0) 编辑
摘要:转载:https://www.linux.com/learn/linux-career-center/44184-the-kernel-newbie-corner-kernel-debugging-with-proc-qsequenceq-files-part-3Finally, after two installments of the basics of debugging with sequence files, we're going to finish off by demonstrating the power of sequence files with an examp 阅读全文
posted @ 2014-04-05 13:46 摩斯电码 阅读(454) 评论(0) 推荐(0) 编辑
摘要:转载:https://www.linux.com/learn/linux-career-center/39972-kernel-debugging-with-proc-qsequenceq-files-part-2-of-3This week, we'll pick up where we left off last week and continue discussing simple kernel and module debugging using seq_file-based proc files. And given the amount of material left t 阅读全文
posted @ 2014-04-05 13:45 摩斯电码 阅读(372) 评论(0) 推荐(0) 编辑
摘要:转载:https://www.linux.com/learn/linux-career-center/37985-the-kernel-newbie-corner-kernel-debugging-using-proc-qsequenceq-files-part-1Over this column and the next one (and possibly the one after that, depending on how detailed we get), we're going to discuss kernel and module debugging using pro 阅读全文
posted @ 2014-04-05 13:41 摩斯电码 阅读(385) 评论(0) 推荐(0) 编辑
摘要:转载:http://blog.csdn.net/kasalyn/article/details/17097639The __KERNEL__ macro is defined because there is programs (like libraries) that include kernel code and there is many things that you don't want them to include. So most modules will want the__KERNEL__ macro to be enabled.When you compile y 阅读全文
posted @ 2014-04-05 12:52 摩斯电码 阅读(620) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页