在Ubuntu 8.04 下建置Android的編譯平台

安裝環境
STEP1:
安裝libary
apt-get install git-core gnupg sun-java5-jdk flex bison gperf libsdl-dev libesd0-dev libwxgtk2.6-dev build-essential zip curl libncurses5-dev zlib1g-dev

STEP2:
You might also want Valgrind, a tool that will help you find memory leaks, stack corruption, array bounds overflows, etc.
apt-get install valgrind


安裝Repo
STEP1:
新增bin資料夾在使用者目錄底下
cd ~
mkdir bin

STEP2:
下載Repo的code
設定環境
curl http://android.git.kernel.org/repo >~/bin/repo
export PATH=~/bin:$PATH\
chmod a+x ~/bin/repo


下載Android的rootfile程式碼
STEP1:
新增原始碼存放區
mkdir mydroid
cd mydroid

STEP2:
設定要下載的原始碼
repo init -u git://android.git.kernel.org/platform/manifest.git
要是想要下載其他的版本
到此網頁連結
並輸入
repo init -u git://android.git.kernel.org/platform/manifest.git -b <branch>
註:<branch>為版本名稱,如:cupcake、donut...等

STEP3:
下載原始碼
repo sync


下載Android的kernel程式碼
STEP1:
新增原始碼存放區
mkdir mydroid_kernel
cd mydroid_kernel

STEP2:
下載原始碼
git clone git://android.git.kernel.org/kernel/common.git

0 意見:

張貼留言