打开/关闭搜索
搜索
打开/关闭菜单
通知
打开/关闭个人菜单
查看“Fastboot Update”的源代码
来自Uotan Wiki · 刷机百科
查看
阅读
查看源代码
查看历史
associated-pages
页面
讨论
更多操作
←
Fastboot Update
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
=== '''<big>什么是Fastboot Update?</big>''' === Fastboot Update指的是进入BootLoader模式的一种升级方式,是一种快速线刷方式,下载对应的工具并把其放在系统目录下,即可在cmd命令行打开(工具和驱动详细请参考“[[ADB与Fastboot驱动]]”) ---- === '''<big>常用命令</big>''' === ==== '''android系统分区''' ==== <code>boot</code> 引导区,存放内核和ramdisk的分区 <code>recovery</code> recovery分区 <code>system</code> 系统分区 <code>userdata</code> 数据分区 <code>cache</code> 缓存分区 ==== '''列出fastboot设备''' ==== <code>fastboot devices</code> ==== '''重启相关''' ==== <code>fastboot reboot</code> #重启⼿机 <code>fastboot reboot-bootloader</code> #重启到bootloader模式,其实就是再次进入fastboot ==== '''擦除相关(erase)''' ==== <code>fastboot erase boot</code> #擦除boot分区(擦了引导就没了,会卡在第一屏,) <code>fastboot erase recovery</code> #擦除recovery分区 <code>fastboot erase system</code> #擦除system分区(擦了系统就没了,会卡在第二屏) <code>fastboot erase userdata</code> #擦除userdata分区(可擦,清空数据用) <code>fastboot erase cache</code> #擦除cache分区(可擦,清空数据用) ==== '''写⼊分区(flash)''' ==== <code>fastboot flash boot boot.img</code> #写⼊boot分区 <code>fastboot flash recovery recovery.img</code> 写⼊recovery分 <code>fastboot flash system system.img</code> #写⼊system分区 ==== '''获取⼿机的全部信息''' ==== <code>fastboot getvar all</code> ==== '''其它:''' ==== <code>fastboot -w reboot</code> #清除手机中所有数据然后重启,等同于系统中的“恢复出厂设置”,或Recovery模式的“清空所有数据”操作 <code>fastboot boot <内核镜像文件名或路径></code> #临时启动镜像,不会烧录和替换内核文件到存储中,类似于在PC端用U盘启动PE系统 <code>fastboot oem device-info</code> #输出当前BL锁状态(非MTK) <code>fastboot oem lks</code> #输出当前BL锁状态(MTK) <code>fastboot oem reboot-recovery</code> #重启进入Recovery模式 <code>fastboot oem poweroff</code> # 拔掉数据线后关机 <code>fastboot oem lock</code> #重新上BL锁并清空所有数据(需未开启root) <code>fastboot oem unlock</code> #解除BL锁并清空所有数据(小米手机必须绑定账号,主动申请解锁,等待7天,使用工具才行) <code>fastboot oem edl</code> #进入高通9008模式,无需工程线或主板短接,可无视BL锁线刷
返回
Fastboot Update
。