2022最新高通8155平台开源代码最新代码下载、编译方法_alibli的博客-CSDN博客_高通源码下载
要感谢以上这个链接
总体上,就是你要有repo环境;然后
-
repo init --depth=1 -u https://git.codelinaro.org/clo/la/platform/manifest.git -b release -m [manifest] --repo-url=https://git.codelinaro.org/clo/tools/repo.git --repo-branch=qc-stable
-
repo sync -j8 -c --no-tags
其中[manifest] 替换成你要下载的分支,在如下网页中找
Android releases | CodeLinaro Wiki
比如:
repo init --depth=1 -u https://git.codelinaro.org/clo/la/platform/manifest.git -b release -m LA.UM.8.12.c3-62300-sm8250.0.xml --repo-url=https://git.codelinaro.org/clo/tools/repo.git --repo-branch=qc-stable
就可以了;
中间有一个小坑,就是需要你提供一下邮箱名,事实上并不需要去注册,只需要邮箱名即可
也就是配置一下git
这个命令其实也正是高通官方给出的下载方法;私有高通代码部分,通常大概1个G的压缩包,但是需要高通账户,不能得;
看看这个已经很好了;
遇到的问题
- Q:ubuntu20版本上默认的python版本为3.10,出现ModuleNotFoundError: No module named ‘formatter‘错误
A:因为formatter这个模块已经在3.10上删除了,所以出现错误,解决办法,将附件formatter.py放到python3.10的lib目录(默认 /usr/lib/python3.10/)即可。或者从wget https://www.python.org/ftp/python/3.8.0/Python-3.8.0a4.tar.xz下载解压得到formatter.py,然后放置到python3.10的lib目录。