1. 檢視fastboot命令的幫助:
fastboot
顯示如下資訊:
view plain
usage: fastboot [ ]
commands:
update reflash device from update.zip
flashall "flash boot"
+ "flash system"
flash [ ] write a file to a flash partition
erase erase a flash partition
getvar display a bootloader variable
boot [ ] download and boot kernel
flash:raw boot [ ] create bootimage and flash it
devices list all connected devices
reboot reboot device normally
reboot-bootloader reboot device into bootloader
options:
-w erase userdata and cache
-s specify device serial number
-p specify product name
-c override kernel commandline
-i specify a custom usb vendor id
2. 擦除分割槽:
fastboot erase 例:fastboot erase boot或fastboot erase system等。
3. 燒寫指定分割槽:
fastboot flash 例:fastboot flash boot boot.img或fastboot flash system system.img等。
4. 燒寫所有分割槽:
fastboot flashall 注意:此命令會在當前目錄中查詢所有img檔案,將這些img檔案燒寫到所有對應的分割槽中,並重新啟動手機。
5. 一次燒寫boot,system,recovery分割槽:
(1)建立包含boot.img,system.img,recovery.img檔案的zip包。
(2)執行:fastboot update
6. 燒寫開機畫面:
fastboot flash splash1 開機畫面
7. 重啟手機:
fastboot reboot
Fastboot使用詳解
文章出處 1.fastboot簡介 fastboot是android快速公升級的一種方法,fastboot的協議fastboot protocol.txt在原始碼目錄.bootable bootloader legacy下可以找到。fastboot客戶端是作為android系統編譯的一部分,編譯後位...
使用fastboot命令刷機流程詳解
準備工作 首先需要準備好刷機包,可以是自己編譯的,也可以是從別處拷貝的,但一定要確保刷機包適用於你的 android 裝置。然後解壓刷機包,解壓後我們可以得到 boot.img recovery.img system.img bootloader 檔案,正是這些檔案構成了 android 裝置的系統...
Fastboot 常用命令
fastboot 是配合手機 fastboot 模式使用的一種工具。可以在手機系統損壞 非磚 的情況下,不依賴手機軟體,而是使用本地的映象操作手機。公升級檔名 update 作用 刷入rom 列句 fastboot update update.zip 刷入所有映象 flashall 作用 刷入boo...