- 1、本文档共7页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
分析Android 根文件系统启动过程(国外英语资料)
分析Android 根文件系统启动过程(国外英语资料)
Analysis of the Android root file system startup process (init daemon analysis)
Daemon, Android, file system, init, process
In the Android system startup, the kernel boot parameters are set to init=/init, in this case, if the kernel successfully mounted the file system after the first operation is the root directory of the init program. What does this program do? We only have RFSC (Readthe, Fucking, Source, code)!!
Init program source code, in the official Android source code system/core/init, main in init.c. Our analysis starts with main.
Init:
(1) install the SIGCHLD signal. If the parent process does not wait until the end of the child process, the child process will become a zombie process (zombie), which takes up system resources. Therefore, SIGCHLD signals need to be processed to recover the resources of the zombie process and avoid unnecessary waste of resources.
(2) clearing umask.
What is umask, please see /showArticle/53978.shtml
(3) set up the necessary folders for rootfs and mount the appropriate partitions.
/dev (TMPFS)
/dev/pts (devpts)
/dev/socket
/proc (proc)
/sys (sysfs)
(4) create /dev/null and /dev/kmsg nodes.
(5) parse /init.rc, adding all the services and operations information to the list.
(6) extract information kernel startup parameters from /proc/cmdline and save them to global variables.
(7) obtain the information, hardware information and version number from the global variables acquired in the previous step. If not, then extract them from /proc/cpuinfo and save them to global variables.
(8) select a /init. (hardware).Rc according to the hardware information, and parse the service and operation information into the list.
In the G1 ramdisk root directory, there are two /init. (hardware).Rc:init.goldfish.rc and init.trout.rc, and the init program selects an analysis based on the hardware information obtained earlier.
(9) execute the command triggered by early-init in the linked list.
(10) traversing the /sys fold
您可能关注的文档
- 从冰棍小贩到中国空调大鳄(图)(国外英语资料).doc
- 从创建到变革企业文化全过程实操(五全文完)(国外英语资料).doc
- 从化学和生物的角度来跟大家分享一些医药常识(国外英语资料).doc
- 从发短信习惯看出你心理弱点(国外英语资料).doc
- 从咖啡定位看化妆品的细分市场策略!(国外英语资料).doc
- 从唐僧师徒来看团队精神(国外英语资料).doc
- 从喝咖啡知道爱情观(国外英语资料).doc
- 从地摊小贩到亿万富翁 白手起家本钱只有七百元(国外英语资料).doc
- 从女性主义角度看丁玲的《莎菲女士的日记》(国外英语资料).doc
- 从少阳论治耳鼻喉病(国外英语资料).doc
- 新高考生物二轮复习讲练测第6讲 遗传的分子基础(检测) (原卷版).docx
- 新高考生物二轮复习讲练测第12讲 生物与环境(检测)(原卷版).docx
- 新高考生物二轮复习讲练测第3讲 酶和ATP(检测)(原卷版).docx
- 新高考生物二轮复习讲练测第9讲 神经调节与体液调节(检测)(原卷版).docx
- 新高考生物二轮复习讲练测第11讲 植物生命活动的调节(讲练)(原卷版).docx
- 新高考生物二轮复习讲练测第8讲 生物的变异、育种与进化(检测)(原卷版).docx
- 新高考生物二轮复习讲练测第5讲 细胞的分裂、分化、衰老和死亡(讲练)(原卷版).docx
- 新高考生物二轮复习讲练测第5讲 细胞的分裂、分化、衰老和死亡(检测)(原卷版).docx
- 新高考生物二轮复习讲练测第12讲 生物与环境(讲练)(原卷版).docx
- 新高考生物二轮复习讲练测第11讲 植物生命活动的调节(检测)(原卷版).docx
文档评论(0)