Android添加开机启动服务程序关于Selinux权限问题说明

(619条消息) Android7.1添加开机启动服务程序关于Selinux权限问题说明_平仄散人的博客-CSDN博客

service xxxx /system/bin/xxxx
class main
user root
group root
oneshot
seclabel u:r:xxxx:s0   #这句是为加selinux权限添加的,android5.1以后不加则无法启动该服务

[    3.958386] init: Service eGTouchD does not have a SELinux domain defined.
 

该提示说明没有定义SELinux domain,导致服务eGTouchD无法自启动。

第二步,为了解决这个问题我们按如下方式修改并且添加sepolicy文件:

修改seplicy/file_contexts文件,添加以下内容:

你可能感兴趣的:(服务器,linux,运维)