本文主要是介绍Android7.1开机启动脚本(三十四),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Android7.1开机启动脚本
1.开机修改为:Permissive模式启动
2.在device/qcom/common/rootdir/etc/init.qcom.rc添加: 下边两种方式都可。
service test_service /system/bin/sh /system/bin/set.sh user root disabled oneshot on property:sys.boot_completed=1 start test_service exec /system/bin/sh /system/bin/test.sh3.在/system/bin下set.sh和test.sh内容
set.sh
#!/system/bin/sh
touch /data/1111111111.txttest.sh
touch /data/444444444.txt4.Androoid.mk文件,将set.sh和test.sh拷贝到device/qcom/msmxxx目录下
device/qcom/msmxxx/msmxxx.mk
PRODUCT_COPY_FILES += device/qcom/msmxxx/set.sh:system/etc/set.sh
PRODUCT_COPY_FILES += device/qcom/msmxxx/test.sh:system/etc/test.sh5.编译
# make bootimage -j16
这篇关于Android7.1开机启动脚本(三十四)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!