最終更新:2014-12-24 (水) 04:39:07 (3401d)  

Android/ビルド/Cygwin
Top / Android / ビルド / Cygwin

必要

  • cURL
  • Python
  • GnuPG
  • Git
    mkdir ~/bin
    curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
    chmod a+x ~/bin/repo

パスの設定

  • .bash_profile
    # Set PATH so it includes user's private bin if it exists
    # if [ -d "${HOME}/bin" ] ; then
    #   PATH="${HOME}/bin:${PATH}"
    # fi
  • をコメントイン

Gitの設定

  • git config --global user.email "tokkyo@cygwin"
    git config --global user.name "tokkyo"

メモ

  • repo initでブランチを指定しないとmasterを取りに行く。2014/12の時点で30GB程度。
  • AOSP/build/core/build_id.mkのビルド番号は
    BUILD_ID := AOSP
  • になってた。

ブランチの切り替え

参考