fastboot
2020-06-16 本文已影响0人
非著名自行车运动员
| W | W | W |
|---|---|---|
| update | 升级文件 | fastboot update update.zip |
| flashall | 刷入所有镜像: boot.img、system.img、recovery.img | fastboot flash all update.zip |
| flash | 刷入镜像 | fastboot flash system system.img |
| erase | 擦除镜像 | fastboot erase system |
| boot | 刷入内核 | fastboot boot kernel.img ramdisk.gz |
| flash:raw boot | 创建内核 | fastboot flash:raw boot kernel.img ramdisk.gz |
| devices | 输出所有连接的设备 | fastboot devices |
| reboot | 重新启动,正常开机 | fastboot reboot |
| HBoot | 作用: 重新启动,进入HBoot | fastboot reboot-bootloader |
| -w | 擦除数据 | fastboot -w |
| -s | 指定某设备 | fastboot -s 序列号 |
| -p | 指定某设备 | fastboot -p 设备名 |
| -c | 替代系统启动命令 | fastboot -c 代码 |