Android Kernel集锦

Posted rainey-forrest

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Kernel集锦相关的知识,希望对你有一定的参考价值。

1.Storage

1.1 如何添加守护进程(daemon process)

:在init.rc添加相关服务进程,

example,

## Daemon processes to be run by init.
##
service ueventd /system/bin/ueventd
    class core
    critical
    seclabel u:r:ueventd:s0
    shutdown critical

service flash_recovery /system/bin/install-recovery.sh
    class main
    oneshot

service console /system/bin/sh
    class core
    console
    disabled
    user shell
    group shell log readproc
    seclabel u:r:shell:s0
    setenv HOSTNAME console

service kmsg_log /system/bin/kmsg.sh
    class late_start

service syslog /system/bin/logcat -f /data/log/system.log -r 10240 -v time
     user root
     group system
     oneshot

 

 

2.Performance

3.Stability

以上是关于Android Kernel集锦的主要内容,如果未能解决你的问题,请参考以下文章

Android面试题集锦 (转)

Android源码博文集锦2

Android面试题基础集锦总结《二》

Android源码博文集锦1

Android中常用ADB命令集锦

Android 小问题 集锦