1、見到網(wǎng)上一篇刷樂phone的帖子很好所以記錄下來:
adb devices查看已連接設(shè)備
adb reboot-bootloader 讓手機(jī)進(jìn)入fastboot模式
fastboot devices可以看到設(shè)備列表
用下面的命令燒寫boot、systerm、和userdata
fastboot flash boot path\boot.img
fastboot flash system path\system.img
fastboot flash userdata path\userdata.img
然后用fastboot reboot重啟設(shè)備
2、fastboot相關(guān)使用
Android手機(jī)分區(qū)(每個分區(qū)都有相應(yīng)的img文件對應(yīng)):開機(jī)啟動畫面區(qū)(splash1),數(shù)據(jù)恢復(fù)區(qū)(recovery),內(nèi)核區(qū)(boot),
系統(tǒng)區(qū)(system),數(shù)據(jù)緩存區(qū)(cache),用戶數(shù)據(jù)區(qū)(userdata)。
1. 查看fastboot命令的幫助:fastboot
顯示如下信息:
usage: fastboot [ <option> ] <command>
commands:
update <filename> reflash device from update.zip
flashall "flash boot" + "flash system"
flash <partition> [ <filename> ] write a file to a flash partition
erase <partition> erase a flash partition
getvar <variable> display a bootloader variable
boot <kernel> [ <ramdisk> ] download and boot kernel
flash:raw boot <kernel> [ <ramdisk> ] 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 <serial number> specify device serial number
-p <product> specify product name
-c <cmdline> override kernel commandline
-i <vendor id> specify a custom USB vendor id
2. 擦除分區(qū):fastboot erase {partition} 例:fastboot erase boot或fastboot erase system等。
fastboot oem format 進(jìn)行格式化
fastboot erase cache 清除cache
3. 燒寫指定分區(qū):
fastboot flash {partition} {*.img} 例:fastboot flash boot boot.img或fastboot flash system system.img等。
4. 燒寫所有分區(qū):
fastboot flashall 注意:此命令會在當(dāng)前目錄中查找所有img文件,將這些img文件燒寫到所有對應(yīng)的分區(qū)中,并重新啟動手機(jī)。
5. 一次燒寫boot,system,recovery分區(qū):
(1)創(chuàng)建包含boot.img,system.img,recovery.img文件的zip包。
(2)執(zhí)行:fastboot update {*.zip}
6. 燒寫開機(jī)畫面:
fastboot flash splash1 開機(jī)畫面
7. 重啟手機(jī):
fastboot reboot
轉(zhuǎn)載: http://blog.csdn.net/LinuxZhouYing/article/details/7166679