Platform

MSM8917

PM8937

PMI8940

在 Qualcomm code base 中,

amss下有許多 MSM89xx 之類的 folder,

這些是為了不同 chip 所產生的 download file,

裡面有一隻 contents.xml,說明所需要 download file 的位置及檔案,

可以從以下 tag 切入了解,

<image_dir> 用來說明 image 所在的目錄,

<file_path> 用來說明 image 所在的路徑,

<file_name> 用來說明 imge 的檔名,

e.g.

contents.xml

 35       <image_dir>common</image_dir>
36 <release_path/>
37 <download_file minimized="true" fastboot="modem">
38 <file_name>NON-HLOS.bin</file_name>
39 <file_path flavor="asic">common/build/bin/asic/</file_path>
40 <file_path>common/build/bin/asic/</file_path>
41 </download_file>

contents.xml 在 MSM89xx 下面,有一個 common folder,

路徑是在 common/build/bin/asic/,

檔名是 NON-HLOS.bin

contents.xml

272       <image_dir>adsp_proc</image_dir>
273 <release_path>HY11_CompileTest</release_path>
274 <file_ref cmm_file_var="ADSP_BINARY" pil_split="adsp" minimized="true">
275 <file_name>adsp.mbn</file_name>
276 <file_path>adsp_proc/obj/8937/signed/</file_path>
277 </file_ref>

在自己的 cod base 中,

在 MSM89xx 下面,並沒有 adsp_proc 的 folder,

所以可以建立一個 名為 adsp_proc (參考<image_dir>)link 到 amss/ADSP.xxxxx/adsp_proc/

或是 copy 整個 amss/ADSP.xxxxx 到 MSM89xx 下面 (主要是需要 adsp_proc),

至於需要幾個 image_dir,要看 project build code guide。

Qualcomm download 所需要的 contents.xml的更多相关文章

  1. Embedding Documents in Word 2007 by Using the Open XML SDK 2.0 for Microsoft Office

    Download the sample code This visual how-to article presents a solution that creates a Word 2007 doc ...

  2. [Quote]Creating basic Excel workbook with Open XML

    Creating basic Excel workbook with Open XML [Quote from]http://www.codeproject.com/Articles/371203/C ...

  3. Anakia 转换xml文档为其他格式

    一.简介 Anakia 使用JDOM 和Velocity将XML文档转换为特定格式的文档 二.解析xml文档方法 1.DOM java jdk,xml-api.jar 需要加载整个xml文档来构建层次 ...

  4. 2016/4/7 datatype:①json ②XML

    ①JSON 1,postjsonxml.php     json用循环方式处理传来的值  for(key in data) for(var i=0;i<data.length;i++){data ...

  5. parse XML & JSON & js

    parse XML & JSON & js how to parse xml data into json in js? https://stackoverflow.com/quest ...

  6. 高通sdm845_la2.0源码编译及使用QFIL刷机

    一.下载源码 高通芯片代码下载地址:https://chipcode.qti.qualcomm.com/ . *_amss_standard_oem : 高通私有源码(*为sdm845-la--. * ...

  7. Wix: Using Patch Creation Properties - Small Update

    Source Reference: wix help document  -- WiX Toolset License Using Patch Creation Properties  A patch ...

  8. Class loading in JBoss AS 7--官方文档

    Class loading in AS7 is considerably different to previous versions of JBoss AS. Class loading is ba ...

  9. jquery-1.11.1.js

       每次想要使用这个js时,总是要到官网上下载,太麻烦,现在把它收录了 jquery-1.11.1.js /*! * jQuery JavaScript Library v1.11.1 * http ...

随机推荐

  1. tcl之基本语法—3

  2. 【PHP】$_SERVER整理

    PHP变成中经常需要用到服务器的一些资料,我在这里整理一下,方便查找.第一部分为比较常用的$_SERVER $_SERVER['HTTP_ACCEPT_LANGUAGE']//浏览器语言 $_SERV ...

  3. 802. Find Eventual Safe States

    https://leetcode.com/problems/find-eventual-safe-states/description/ class Solution { public: vector ...

  4. 6、python中的元组

    元组(tuple)是python中有序.不可变的数据结构.元组还是python四种数据结构中唯一一种不可变的数据结构. 一.前言 元组在很多方面都变现得跟列表一样,除了列表储存得对象是可变得,而元组储 ...

  5. ERROR L105: PUBLIC REFERS TO IGNORED SEGMENT 的解决办法

    今天接着写一个单片机程序,出现这个问题,我仔细查看每一句语句,发现逻辑上没有错误,但就是出现这个问题,不能生成目标文件: *** ERROR L107: ADDRESS SPACE OVERFLOW ...

  6. 在Foxmail中添加阿里云企业邮箱账号

    1.安装完成Foxmail之后,新建账号 输入阿里云邮箱地址和密码,点击创建 接受服务器类型你可以选择POP3或者IMAP,在这里我选择的是POP3 点击创建,大功告成. 为什么要写这篇文章呢? 因为 ...

  7. 我给女朋友讲编程CSS系列(2)- CSS语法、3大选择器、选择器优先级

    首先看一下使用Css设置h1标签字体颜色和大小的例子,效果图如下: 新建一个网页test.html,然后复制粘贴下面的内容: <html> <head> <style t ...

  8. Selenium中如何运行 auto.exe 文件

    Runtime exe = Runtime.getRuntime(); try{ String str = "D:\\Auto上传文件\\photo.exe"; exe.exec( ...

  9. 安装 Redis的Python客户端redis-py

    安装 redis-py 使用easy_install sudo easy_install redis 源码安装 git clone https://github.com/andymccurdy/red ...

  10. 安装的 Python 版本太多互相干扰?pyenv 建议了解一下。

    写在之前 我们都知道现在的 Python 有 Python2 和 Python3,但是由于各种乱七八糟的原因导致这俩哥们要长期共存,荣辱与共,尴尬的是这哥俩的差异还比较大,在很多时候我们可能要同时用到 ...