使用fastboot 進行燒機

來源:互聯網
上載者:User

一、fastboot命令詳解

Android手機分區(每個分區都有相應的img檔案對應):

開機啟動畫面區(splash1),資料恢複區(recovery),核心區(boot),系統區(system),資料緩衝區(cache),使用者資料區(userdata)。

 

1. 查看fastboot命令的協助:

    fastboot

    顯示如下資訊:

view plain

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. 擦除分區:
    fastboot erase {partition}   例:fastboot erase boot或fastboot erase system等。
3. 燒寫指定分區:
    fastboot flash {partition} {*.img}   例: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 {*.zip}
6. 燒寫開機畫面:
    fastboot flash splash1 開機畫面
7. 重啟手機:
    fastboot reboot

 

二、使用fastboot快速燒錄img檔案,提高調試效率
1、 在工程的out目錄下out/host/linux-86/bin會成adb 以及fastboot命令工具。Fastboot 命令的使用同以及環境設定與adb一樣。
2、 好附件system.h 檔案修改/kernel/arch/arm/mach-sc8810/include/mach下的system.h。
3、 第一次必須使用reserachdownload燒錄編譯的全部img檔案。
4、 手機開機之後,使用adb reboot bootloader即可進入fastboot mode.
5、 之後即可在ubuntu下使用fastboot 燒寫指定的img檔案。這樣就可以減少在windows下用reserachdownload繁鎖的操作,也可節省調試時間。

6、此操作目前只針對展訊平台使用,

/kernel/arch/arm/mach-sc8810/include/mach/system.h

else if(!strncmp(cmd, "bootloader", 9))
 {
  ANA_REG_SET(ANA_RST_STATUS, HWRST_STATUS_BOOTLOADER);

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.