Qualcomm download 所需要的 contents.xml
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的更多相关文章
- 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 ...
- [Quote]Creating basic Excel workbook with Open XML
Creating basic Excel workbook with Open XML [Quote from]http://www.codeproject.com/Articles/371203/C ...
- Anakia 转换xml文档为其他格式
一.简介 Anakia 使用JDOM 和Velocity将XML文档转换为特定格式的文档 二.解析xml文档方法 1.DOM java jdk,xml-api.jar 需要加载整个xml文档来构建层次 ...
- 2016/4/7 datatype:①json ②XML
①JSON 1,postjsonxml.php json用循环方式处理传来的值 for(key in data) for(var i=0;i<data.length;i++){data ...
- parse XML & JSON & js
parse XML & JSON & js how to parse xml data into json in js? https://stackoverflow.com/quest ...
- 高通sdm845_la2.0源码编译及使用QFIL刷机
一.下载源码 高通芯片代码下载地址:https://chipcode.qti.qualcomm.com/ . *_amss_standard_oem : 高通私有源码(*为sdm845-la--. * ...
- Wix: Using Patch Creation Properties - Small Update
Source Reference: wix help document -- WiX Toolset License Using Patch Creation Properties A patch ...
- Class loading in JBoss AS 7--官方文档
Class loading in AS7 is considerably different to previous versions of JBoss AS. Class loading is ba ...
- jquery-1.11.1.js
每次想要使用这个js时,总是要到官网上下载,太麻烦,现在把它收录了 jquery-1.11.1.js /*! * jQuery JavaScript Library v1.11.1 * http ...
随机推荐
- JZOJ 2137. 【GDKOI2004】城市统计 (Standard IO)
2137. [GDKOI2004]城市统计 (Standard IO) Time Limits: 1000 ms Memory Limits: 128000 KB Detailed Limits ...
- linux硬件基础
1. 服务器分类 机架式服务器(主要用这个). 刀片式服务器. 塔式服务器. 2. 机架式服务器 服务器的尺: U - 2U. 服务器核心之电源: 双电源 AB 路. 服务器核心之 CPU-计算 CP ...
- P1101 单词方阵
题目描述 给一 n \times nn×n 的字母方阵,内可能蕴含多个"yizhong"单词.单词在方阵中是沿着同一方向连续摆放的.摆放可沿着 88 个方向的任一方向,同一单词摆放 ...
- Poj3061Subsequence
A sequence of N positive integers (10 < N < 100 000), each of them less than or equal 10000, a ...
- LOJ #6010. 「网络流 24 题」数字梯形
#6010. 「网络流 24 题」数字梯形 题目描述 给定一个由 n nn 行数字组成的数字梯形如下图所示.梯形的第一行有 m mm 个数字.从梯形的顶部的 m mm 个数字开始,在每个数字处可以 ...
- HashMap 简介
HashMap 前置条件 了解数组 了解链表 jdk version: 1.8 个人分3步来了解HashMap 通过数据结构图 通过为了完成这样的数据结构我们该怎么做 HashMap 实际put方法源 ...
- 使用WMI Filter 实现组策略的筛选!
今天接到一个客户的一个问题,提到需要分系统版本分发相应的MSI程序.比如简体版接受简体版的分发程序,繁体版接受繁体版的分发程序!这个建立组策略的不同版本分发本身不会太难,我们只需要建立两个不同组策略分 ...
- linux环境搭建系列之svn安装
前提: linux centOS 64位操作系统 1.root账号 2.#yum install -y subversion 出现如下报错: 尝试Telnet https://www.baidu.co ...
- 从shell(终端)中退出python
从shell(终端)中退出python: 1.输入命令行:$ exit() 2.快捷键: ctrl+Z
- Python 拓展之迭代器
写在之前 今天来讲讲「迭代器」的内容,其实已经拖了好多天了,感觉再不写就要忘记了.「迭代」相信对你来说已经不陌生了,我前面曾经专门用一篇文章来讲,如果你已经没有什么印象的话,就再点进去看看(零基础学习 ...