优秀资源链接

学习收集:

Gityuan Android的很多优秀博客:http://gityuan.com/page5/

Android:

Android国内镜像的源码(可能滞后一个版本):http://androidxref.com/
选中一个版本后就可以在浏览器中阅读其源码,例如选中Android9就是: http://androidxref.com/9.0.0_r3/
make官方文档:https://www.gnu.org/software/make/manual/make.html
Android官方培训文档:http://hukai.me/android-training-course-in-chinese/basics/index.html
如何自学Android(里面列举了一些Android资料):http://gityuan.com/2016/04/24/how-to-study-android/


1.linux下/proc下的所有文件解析
Chapter 3. The proc File System: https://www.centos.org/docs/5/html/5.2/Deployment_Guide/ch-proc.html
https://www.centos.org/docs/5/html/5.2/Deployment_Guide/s2-proc-iomem.html

2.上面的只是下面这个总文档的一部分(适合系统管理维护)
https://www.centos.org/docs/5/html/5.2/Deployment_Guide/

3.ZS推荐的蜗窝科技:(巨好,多,全)
http://www.wowotech.net/linux_application/kernel_debug_enable.html

4.内核文档和example代码:

linuxsamples

5.内核官网文档

https://01.org/linuxgraphics/gfx-docs/drm/admin-guide/index.html

6. libdrm优秀demo
https://www.cnblogs.com/super119/archive/2013/01/04/2844431.html

7. Linux内核WIFI官网:

https://wireless.wiki.kernel.org/welcome

8.Linux内核man文档:

https://www.kernel.org/doc/man-pages/

https://www.kernel.org/doc/

9.蓝牙:https://blog.csdn.net/BHJ1119/article/details/53737573

10. 我的git hub:https://github.com/tytht?tab=repositories

10.Android 蓝牙软件资料: https://www.cnblogs.com/MMLoveMeMM/articles/3713474.html

11.C++官方文档:http://www.cplusplus.com/doc/tutorial/templates/

12. Linux wireless: https://wireless.wiki.kernel.org/welcome

13.Linux交叉编译工具链

https://releases.linaro.org/components/toolchain/binaries/4.9-2017.01/arm-linux-gnueabi/

14. u-boot源码下载

ftp://ftp.denx.de/pub/u-boot/

15. Android 源码阅读

http://androidxref.com/

16. Android开源Source: https://source.android.google.cn/devices/architecture/dto/partitions

17. 高通官网: https://createpoint.qti.qualcomm.com/dashboard/public/productkit#public/product-kit/search

18.Linux内核代码下载链接:https://www.kernel.org/

二、Android

1.优化电池续航时间:https://developer.android.google.cn/topic/performance/power(Android开发者文档)

2.Google官方优秀资料:https://source.android.google.cn/devices  (优秀资料)

    Power的:https://source.android.google.cn/devices/tech/power

同事推荐:
1.:
https://github.com/analogdevicesinc/no-OS/tree/fd231dd87735b82ec98fa9aa28bf75a805741494

Linux内核文档:

https://01.org/linuxgraphics/gfx-docs/drm/gpu/index.html
https://01.org/linuxgraphics/gfx-docs/drm/media/
https://01.org/linuxgraphics/gfx-docs/drm/media/
https://linuxtv.org/downloads/v4l-dvb-apis/
https://en.wikipedia.org/wiki/Direct_Rendering_Manager
https://01.org/linuxgraphics/gfx-docs/drm/admin-guide/index.html

网络优秀博文:

tcp/ip协议栈实现机制: https://blog.csdn.net/yasi_xi/article/details/8089426 或 https://blog.csdn.net/voipmaker/article/details/7035132

Android优秀博文:

Android的init过程详解(一):https://www.cnblogs.com/nokiaguy/archive/2013/04/14/3020774.html
Android的init过程(二):初始化语言(init.rc)解析:http://www.cnblogs.com/nokiaguy/p/3164799.html

TODO:

HIDL框架:https://blog.csdn.net/Invoker123/article/details/84868260

cgroup,看这个博客上的链接:

https://www.cnblogs.com/yjf512/p/3298582.html

Alarm TODO:
Android Alarm驱动源代码分析(Alarm.c):https://blog.csdn.net/xiaopohaibebo/article/details/74505173 (不错,有demo)
警报器系统驱动Alarm: https://www.jianshu.com/p/9248b7ebc883?utm_campaign (勉强可以)
[笔记分享] [RTC] Alarm内核驱动分析:https://blog.csdn.net/kris_fei/article/details/77862629 (也不错,有贴源代码)
第十一章 Android 内核驱动 - Alarm:https://www.open-open.com/pdf/128743abf76141d09fd7746d35a0eefd.html (最好的)

原文地址:https://www.cnblogs.com/hellokitty2/p/9000631.html