一般androi系统启动时 我们想让它启动我们自己的脚本 那么应该怎么去添加以及启动呢
首先在init.rc 添加我们的启动服务
service test /system/bin/test.sh
user root
group root
disabled
oneshot
on property:sys.boot_completed=1
start test
相关的含义自己去百度了
以及更改脚本权限
chmod 0777 /system/bin/test.sh
这里的脚本为 test.sh 然后放到我们的system/bin目录下
接着我们要在file_contexts 添加
/system/bin/test.sh u:object_r:test_exec:s0
test.te 内容如下
type test, domain;
type test_exec, exec_type, file_type;
init_daemon_domain(test)
allow test device:lnk_file { create };
allow test device:dir { write };
allow test device:dir { add_name };
allow test toolbox_exec:file { read open execute_no_trans getattr execute};
allow test system_data_file:file { getattr };
allow test shell_exec:file { getattr };
allow test shell_exec:file { read };
rockchip相关的描述文档下载
https://pan.baidu.com/s/1v341eCdeZH4SmKiOtrWopg