環境:Ubuntu12.04 64bit html
硬盤:80G linux
參考來源網站:http://wiki.cyanogenmod.com/wiki/Galaxy_Nexus_%28GSM%29:_Compile_CyanogenMod_9_%28Linux%29 android
一、安裝JDK 1.6.0,參考教程:http://cofface.org/?p=634 git
二、安裝必備工具合集:(如下工具一個一個安裝) github
1)root@cofface-desktop:~# sudo apt-get install git-core gnupg flex bison gperf build-essential shell
2)root@cofface-desktop:~# sudo apt-get install zip curl zlib1g-dev libc6-dev lib32ncurses5-dev ia32-libs bash
3)root@cofface-desktop:~# sudo apt-get install x11proto-core-dev libx11-dev lib32readline5-dev lib32z-dev curl
4) root@cofface-desktop:~# sudo apt-get install libgl1-mesa-dev g++-multilib mingw32 tofrodos 工具
三、建立bin目錄,配置變量 測試
root@cofface-desktop:~# mkdir ~/bin
root@cofface-desktop:~# PATH=~/bin:$PATH
四、下載和安裝repo:
root@cofface-desktop:~#
curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
五、repo賦予權限和配置環境變量:
root@cofface-desktop:~# chmod a+x ~/bin/repo
root@cofface-desktop:~# PATH=~/bin:$PATH
六、建立一個目錄來存放CM10代碼:
root@cofface-desktop:~# mkdir -p ~/cyanogenmod/jellybean
七、進入jellybean目錄並進行同步源碼:
root@cofface-desktop:~# cd ~/cyanogenmod/jellybean
root@cofface-desktop:~#
repo init -u git://github.com/CyanogenMod/android.git -b
jellybeanroot@cofface-desktop:~# repo sync -j16
耐心等待源碼同步。
八、下載並配置SDK:
1)下載SDK:http://developer.android.com/sdk/installing/index.html
下載linux平臺。
2)解壓到主目錄下,運行android-sdk-linux_x86/tools下的android打開AVD管理器,
安裝Available packages下的Android Repository中的Android SDK Platform-tools,revision7,選你所須要的android版本,而後耐心等待下載安裝;
3)下載完畢後配置環境:
在主目錄下找到.bashrc,隱藏了該文件,先顯示出來,按ctrl+h鍵顯示出來:
最後一行加入:
export PATH=」~/android-sdk-linux/platform-tools/:${PATH}」
或者
export PATH=」${PATH}:~/android-sdk-linux/platform-tools/」
配置完畢後保存。
4)測試環境變量是否配置成功:
root@cofface-desktop:~# adb shell
root@cofface-desktop:~# adb shell * daemon not running. starting it now on port 5037 * * daemon started successfully * 表示配置完成。