AOSP(google)
[repo 설치]
curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
chmod a+x ~/bin/repo
[소스 받기]
cd WORKING_DIRECTORY
repo init -u https://android.googlesource.com/platform/manifest [-b branch-name]
repo sync
[tag로 소스 받기]
repo forall -c git reset --hard <tag-name>
[참조]
http://source.android.com/source/downloading.html
CodeAurora(qualcomm)
[소스 받기]
cd WORKING_DIRECTORY
repo init -u git://codeaurora.org/platform/manifest.git -b branch-name
repo sync
repo init 시 <-b branch-name> 없으면 repo sync 에서 오류 발생
[tag로 소스 받기]
repo forall -c git reset --hard <tag-name>
[참조]
'android' 카테고리의 다른 글
CONFIG_VMSPLIT_2G (0) | 2012.10.13 |
---|---|
input devices porting (0) | 2012.10.13 |
initlogo.rle 만들기 (0) | 2012.10.12 |
(repo) tag로 소스 받기 (0) | 2012.10.12 |
source version 확인 (0) | 2012.10.12 |