高通android平台源码 (2011-03-28 10:56)

来源:互联网 发布:服务器租赁 知乎 编辑:程序博客网 时间:2024/06/02 01:44

分类: Android


https://www.codeaurora.org/gitweb/quic/la/

MSM/QSD Android Enablement Project

To clone a repository

git clone git://codeaurora.org/ + project path.

To clone the entire platform, install repo, and run:

repo init -u git://codeaurora.org/platform/manifest.git
repo sync
Code Aurora Forum

Search: 


ProjectDescriptionOwnerLast Change























Android高通源码下载

 (2010-07-14 15:38:10)
转载
标签: 

it

分类: Android

#!/bin/sh
########################################
# Create ~/Android_src directory
# Create ~/bin directory
########################################
 sudo ln -snf /bin/bash /bin/sh 
 if [ -z $(which curl ) ] ; then
    sudo apt-get -y --force-yes --reinstall install curl
 fi
 test -d ~/bin || mkdir ~/bin
 
 test -e ~/bin/repo || curl http://android.git.kernel.org/repo > ~/bin/repo
 test -x ~/bin/repo || chmod a+x ~/bin/repo
 
 test -d ~/Android_src || mkdir ~/Android_src
cd ~/Android_src

################################################################################

# repo init -u git://codeaurora.org/platform/manifest.git -b [branch] -m [manifest]

###############################################################################
~/bin/repo init -u git://codeaurora.org/platform/manifest.git -b carrot.cupcake -m M7201JSDCBALYA6380.xml

~/bin/repo sync




原创粉丝点击