全部博文(685)
发布时间:2014-09-20 14:37:08
原文地址:http://blog.chinaunix.net/uid-26009923-id-3454597.html1. android 编译完成之后会生生一个 system.img,要想解压system.img需要知道system.img是如何打包生成的,这个好像没有工具可以查看system.img的格式,只能一个个的试。我试了一下unyaffs与unyaffs2都不能解压,最后才发现这个system.img是ext4打包的.........【阅读全文】
发布时间:2014-09-20 14:34:24
原文地址:http://blog.chinaunix.net/uid-26009923-id-4140652.html一. nand devices分析1.1 platform_devices的添加在arch/arm/plat-samsun/dev-nand.c中static struct resource s3c_nand_resource[] = { [0] = {  .........【阅读全文】
发布时间:2014-09-20 14:33:16
原文地址:http://blog.chinaunix.net/uid-26009923-id-4067430.html一.分区的定义1. 定义分区信息在arch/arm/mach-s3c64xx/mach-smdk6410.c中struct mtd_partition ok6410_nand_part[] = { { .name&n.........【阅读全文】
发布时间:2014-09-20 14:30:31
原文地址:http://blog.chinaunix.net/uid-26009923-id-4052153.html对于android下的camera有如下文件java层:./frameworks/base/core/java/android/hardware/Sensor.java ./frameworks/base/core/java/android/hardware/SensorEvent.java ./frameworks/base/core/jav.........【阅读全文】
发布时间:2014-09-20 14:29:13
原文地址:http://blog.chinaunix.net/uid-26009923-id-4050452.html一. V4L2的模块的初始化过程module_init(videodev_init) --> videodev_init在drivers/media/video/v4l2-dev.c中static int __init videodev_init(void){ dev_t d.........【阅读全文】