-
Notifications
You must be signed in to change notification settings - Fork 0
/
repo
29 lines (22 loc) · 1.11 KB
/
repo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
tags: [git,repo,rockchip]
---
# init repo
repo init -u ssh://[email protected]:2222/Android_R/manifests.git -m Android11.xml
# repo mirror
repo init -u ssh://[email protected]:2222/Android_R/manifests.git -m Android11.xml --mirror
# repo chekcout from mirror
repo init -u ssh://[email protected]:2222/Android_R/manifests.git -m Android11.xml \
--reference=/opt/sdk/mirror/rockchip_aosp111
# repo sync
repo sync
# repo sync special module
repo sync kernel u-boot
# upgrade repo
curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo
# rk356x sdk repo
repo init --repo-url ssh://[email protected]:222/ljx/repo.git -u ssh://[email protected]:222/ljx/rockchip/platform/manifests.git -b linux -m rk356x_linux5.10_release.xml
# rk356x sdk develop branch
repo init --repo-url ssh://[email protected]:222/ljx/repo.git -u ssh://[email protected]:222/ljx/rockchip/platform/manifests.git -b linux -m rk356x_linux5.10.xml
# rk356x sdk cdmo branch
repo init --repo-url ssh://[email protected]:222/ljx/repo.git -u ssh://[email protected]:222/ljx/rockchip/platform/manifests.git -b linux -m rk356x_linux5.10_cdmo.xml