1. 程式人生 > >android源碼編譯——從此走上Liunx的不歸路(三)

android源碼編譯——從此走上Liunx的不歸路(三)

article down 安裝git https ani 同步 版本 bsp rep

下載android源碼:

1.安裝git和curl:

sudo apt-get install git-core

sudo apt-get install git-core curl

2.下載repo

mkdir ~/bin
PATH=~/bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
// 如果上述 URL 不可訪問,可以用下面的:
//curl https://storage-googleapis.lug.ustc.edu.cn/git
//-repo-downloads/repo > ~/bin/repo

3.創建工作目錄

mkdir workspace
cd workspace

4.初始化倉庫

repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest

// 清華提供的鏡像源
// repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest

// 中國科技技術大學的鏡像源
// repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest

// 如果提示無法連接到 gerrit.googlesource.com
// 編輯~/bin/repo文件,把REPO_URL一行替換成:REPO_URL=‘https://gerrit-googlesource.lug.ustc.edu.cn/git-repo‘

5.下載android版本源碼

repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b android-4.0.4_r2.1

6.同步源碼樹

repo sync

原文摘自repo下載國內鏈接android源碼

android源碼編譯——從此走上Liunx的不歸路(三)