2022 高通 SA8155P、SDM845平台 开源代码下载

2022 高通 SA8155P、SDM845平台 开源代码下载

SA8155P 开源代码下载:Android 10

官网:
https://wiki.codelinaro.org/en/clo/la/release

repo init --depth=1 -u https://git.codelinaro.org/clo/la/platform/manifest.git -b release -m LA.AU.1.3.1.r2-02900-sa8155.0.xml --repo-url=https://git.codelinaro.org/clo/tools/repo.git --repo-branch=qc-stable
repo sync -j8 -c --no-tags

April 07, 2022	LA.AU.0.3.1.r5-00800-sa8155_gvmq.0	msmnile_gvmq	LA.AU.0.3.1.r5-00800-sa8155_gvmq.0.xml	10.00.00

操作示例:

ubuntu:~/qcom$ mkdir SA8155P
ubuntu:~/qcom$ cd SA8155P/
ubuntu:~/qcom/SA8155P$ repo init --depth=1 -u https://git.codelinaro.org/clo/la/platform/manifest.git -b release -m LA.AU.1.3.1.r2-02900-sa8155.0.xml --repo-url=https://git.codelinaro.org/clo/tools/repo.git --repo-branch=qc-stable
Downloading Repo source from https://git.codelinaro.org/clo/tools/repo.git
remote: Enumerating objects: 7696, done.
remote: Counting objects: 100% (207/207), done.
remote: Compressing objects: 100% (172/172), done.
remote: Total 7696 (delta 113), reused 65 (delta 33), pack-reused 7489
Receiving objects: 100% (7696/7696), 3.33 MiB | 889.00 KiB/s, done.
Resolving deltas: 100% (4875/4875), done.
Get https://git.codelinaro.org/clo/la/platform/manifest.git
remote: Enumerating objects: 642, done.
remote: Counting objects: 100% (642/642), done.
remote: Compressing objects: 100% (121/121), done.
remote: Total 642 (delta 579), reused 570 (delta 521), pack-reused 0
Receiving objects: 100% (642/642), 11.71 MiB | 1.61 MiB/s, done.
Resolving deltas: 100% (579/579), done.
From https://git.codelinaro.org/clo/la/platform/manifest
 * [new branch]      release    -> origin/release

If you want to change this, please re-run 'repo init' with --config-name

repo has been initialized in /Data/qcom/SA8155P
ubuntu:~/qcom/SA8155P$ repo sync -j8 -c --no-tags
remote: Total 0 (delta 0), reused 0 (delta 0), pack-reused 0
remote: Enumerating objects: 120, done.
remote: Counting objects: 100% (120/120), done.
remote: Compressing objects: 100% (113/113), done.

下载过程中,可以使用du -shBM .repo/ 查看下载了多少:

ubuntu:~/qcom/SA8155P$ du -shBM .repo/
2903M   .repo/
ubuntu:~/qcom/SA8155P$ du -shBM .repo/
2912M   .repo/
ubuntu:~/qcom/SA8155P$ du -shBM .repo/
2920M   .repo/



sdm845 开源代码下载:Android 12

repo init --depth=1 -u https://git.codelinaro.org/clo/la/platform/manifest.git -b release -m LA.UM.10.3.r1-01700-sdm845.0.xml --repo-url=https://git.codelinaro.org/clo/tools/repo.git --repo-branch=qc-stable                   Downloading Repo source from https://git.codelinaro.org/clo/tools/repo.git

repo sync -j8 -c --no-tags

April 08, 2022	LA.UM.10.3.r1-01700-sdm845.0	sdm845	LA.UM.10.3.r1-01700-sdm845.0.xml	12.00.00
ubuntu:~/qcom$ mkdir SDM845
ubuntu:~/qcom$ cd SDM845/
ubuntu:~/qcom/SDM845$ repo init --depth=1 -u https://git.codelinaro.org/clo/la/platform/manifest.git -b release -m LA.UM.10.3.r1-01700-sdm845.0.xml --repo-url=https://git.codelinaro.org/clo/tools/repo.git --repo-branch=qc-stable                   Downloading Repo source from https://git.codelinaro.org/clo/tools/repo.git
remote: Enumerating objects: 7696, done.
remote: Counting objects: 100% (207/207), done.
remote: Compressing objects: 100% (172/172), done.
remote: Total 7696 (delta 113), reused 65 (delta 33), pack-reused 7489
Receiving objects: 100% (7696/7696), 3.33 MiB | 909.00 KiB/s, done.
Resolving deltas: 100% (4875/4875), done.
Get https://git.codelinaro.org/clo/la/platform/manifest.git
remote: Enumerating objects: 642, done.
remote: Counting objects: 100% (642/642), done.
remote: Compressing objects: 100% (121/121), done.
remote: Total 642 (delta 579), reused 570 (delta 521), pack-reused 0
Receiving objects: 100% (642/642), 11.71 MiB | 1.89 MiB/s, done.
Resolving deltas: 100% (579/579), done.
From https://git.codelinaro.org/clo/la/platform/manifest
 * [new branch]      release    -> origin/release

If you want to change this, please re-run 'repo init' with --config-name

repo has been initialized in /Data/qcom/SDM845

ubuntu:~/qcom/SDM845$ repo sync -j8 -c --no-tags
remote: Total 0 (delta 0), reused 0 (delta 0), pack-reused 0
remote: Enumerating objects: 12, done.
remote: Counting objects: 100% (12/12), done.
remote: Compressing objects: 100% (11/11), done.
remote: Total 12 (delta 1), reused 10 (delta 1), pack-reused 0
From https://git.codelinaro.org/clo/la/platform/bootable/libbootloader
 * branch            8f268e0a5da9c619723a437e0d6836040dd8d179 -> FETCH_HEAD
Fetching projects:   0% (1/1019) platform/bootable/libbootloaderremote: Enumerating objects: 97, done.
remote: Counting objects: 100% (97/97), done.



分卷压缩命令: tar czf - SA8155P | split -d -b 2G - SA8155P_Android10.tar.gz_

猜你喜欢

转载自blog.csdn.net/Ciellee/article/details/128149635
今日推荐