zoukankan      html  css  js  c++  java
  • MSM8974 fastboot烧写软件

    fastboot烧写是在aboot阶段做的,所以空板没有完整烧写aboot及其boot sequence前的image是没法使用fastboot的。在手机开机状态下,执行:
            adb reboot bootloader
        手机就会重启进入fastboot模式,然后就可以利用fastboot进行单个image的烧写,具体如下:
            fastboot flash <partition> <filename>

        其中:partition为分区名称;filename为image的文件路径和文件名;两者可以在下载包的rawprogram0.xml文件中找到,例如:

            filename="boot.img" label="boot"

        label代表分区名,filename代表image名称,即烧写boot.img命令为:

            fastboot flash boot <path>oot.img

        msm8974分区名和image名称对照表如下:

    分区名Image名
    modemNON-HLOS.bin 
    sbl1 sbl1.mbn 
    dbisdi.mbn 
    rpmrpm.mbn 
    abootemmc_appsboot.mbn 
    boot boot.img 
    recovery recovery.img 
    tztz.mbn 
    persistpersist.img 
    cachecache.img 
    systemsystem.img 
    userdatauserdata.img 

    system.img和userdata.img不包含在qpst的软件发布包里,可以在android的out/target/product/<project>目录下找到。


    fastboot 支持的命令:

    usage: fastboot [ <option> ] <command>

    commands:
      update <filename>                        reflash device from update.zip
      flashall                                 flash boot + recovery + 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

  • 相关阅读:
    在IIS上部署 .Net Core 3.0 项目踩坑实录
    .net core3.0部署Linux服务器 使用Docker容器和Nginx反代理教程
    播放器 AxWindowsMediaPlayer控件的使用
    Github下载慢和下载过程中断等情况的解决方案
    GitHub第一次上传遇到的问题
    DataGridView && 增加复选框(checkbox)方法
    努力
    绘图:drawImage一个用法
    Tuple<T1,T2,.........T> 元组简单使用
    随机的标识符GUID
  • 原文地址:https://www.cnblogs.com/LoongEmbedded/p/5298227.html
Copyright © 2011-2022 走看看