首页 > 代码库 > android 开发工具 fastboot 命令

android 开发工具 fastboot 命令

控制类:

fastboot devices                        查看设备信息

fastboot reboot                         重启设备

fastboot reboot-bootloader         重启Bootloader

fastboot oem unlock                  解锁OEM

fastboot oem unlock                  锁定OEM

fastboot -w update update.zip    zip包方式升级

 

擦除类:

fastboot erase userdata            清除 用户数据 -| 双

fastboot erase cache                清除 缓存数据 -| 清

fastboot erase boot                  清除 boot分区

fastboot erase system              清除 系统分区

fastboot erase webtop              清除 webtop

fastboot erase recovery            清除 recovery

fastboot -w 慎用 清除用户应用程序和设置,不删除SD卡内容

 

输入类:

fastboot flash boot boot.img                      刷入 boot

fastboot flash system system.img              刷入 系统 (注:如遇到分割系统文件,则依次刷入每一个文件即可)

fastboot flash recovery recovery.img          刷入 recovery

fastboot flash bootLoader bootLoader.img  刷入 系统引导

fastboot flash login login.bin                     刷入 开机画面

fastboot radio radio.img                           刷入 基带

fastboot oem oem.img                             刷入 OME 厂商配置信息

 

android 开发工具 fastboot 命令