jpchen 发表于 2018-11-1 11:57:26

Firefly-RK3288 reboot命令相关使用

本帖最后由 jpchen 于 2018-11-9 16:20 编辑

通常我们设备在root权限后使用reboot的主要目的是让设备进行重启,这里总结一下比较好用关于reboot的命令,主要是简单方便大家使用:
1.设备进入升级模式
shell@firefly:/ # reboot loader

2.设备进行关机
shell@firefly:/ # reboot -p

3.设备进行OTA升级,前提是需要把update.zip包放在/mnt/internal_sd/目录
shell@firefly:/ # echo "--update_package=/mnt/internal_sd/update.zip" > /cache/recovery/command
shell@firefly:/ # reboot recovery

4.清除data数据进行恢复出厂设置
shell@firefly:/ # echo "--wipe_data" > /cache/recovery/command
shell@firefly:/ # reboot recovery

5.清除cache数据进行恢复出厂设置
shell@firefly:/ #echo "--wipe_cache" > /cache/recovery/command
shell@firefly:/ #reboot recovery


williamzhang 发表于 2018-11-1 14:31:31

感谢楼主的总结

qzbing 发表于 2019-3-5 01:12:31

学习了,谢谢楼主分享!!
页: [1]
查看完整版本: Firefly-RK3288 reboot命令相关使用