/*************************************************************************
 * init: sys_prop: permission denied uid:1003 name:service.bootanim.exit
 * 说明:
 *     在调试中断串口中每次看到这行输出,有时候觉得挺别扭的,所以查了一下
 * 资料,解决了去。
 *
 *                                   2016-5-13 深圳 南山平山村 曾剑锋
 ************************************************************************/

一、参考文章:
    解决init: sys_prop: permission denied uid:1003 name:service.bootanim.exit问题
        http://blog.csdn.net/jsonz/article/details/43765051
    
二、解决办法:
    1. cat init.rc
        ......
        service bootanim /system/bin/bootanimation  
        class main  
        user graphics  
        group graphics  
        disabled  
        oneshot  
        ......
    2. 修改为:
        cat init.rc
            ......
            service bootanim /system/bin/bootanimation  
            class main  
            user system             # modify this line
            group graphics  
            disabled  
            oneshot  
            ......

 

相关文章:

  • 2022-02-20
  • 2021-09-07
  • 2022-02-25
  • 2021-06-16
  • 2021-11-29
  • 2021-10-23
  • 2022-01-13
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-05-19
  • 2022-01-17
  • 2021-11-15
  • 2022-01-19
  • 2021-11-17
相关资源
相似解决方案