repo android2.3(gingerbread) error

来源:互联网 发布:淘宝买片该搜什么 编辑:程序博客网 时间:2024/05/23 00:04

./repo init -u git://android.git.kernel.org/platform/manifest.git -b gingerbread

Traceback (most recent call last):

  File "./repo", line 603, in <module>

    main(sys.argv[1:])

  File "./repo", line 570, in main

    _Init(args)

  File "./repo", line 184, in _Init

    _CheckGitVersion()

  File "./repo", line 213, in _CheckGitVersion

    proc = subprocess.Popen(cmd, stdout=subprocess.PIPE)

  File "/usr/lib/python2.6/subprocess.py", line 633, in __init__

    errread, errwrite)

  File "/usr/lib/python2.6/subprocess.py", line 1139, in _execute_child

    raise child_exception

OSError: [Errno 2] No such file or directory

解决方法:sudo apt-get install git-core
tongjiang@tongjiang-laptop:~/workdir/code_bak/r10.1_repo$ ./repo init -u git://android.git.kernel.org/platform/manifest.git -b gingerbread
gpg: 钥匙环‘/home/tongjiang/.repoconfig/gnupg/secring.gpg’已建立
gpg: 钥匙环‘/home/tongjiang/.repoconfig/gnupg/pubring.gpg’已建立
gpg: /home/tongjiang/.repoconfig/gnupg/trustdb.gpg:建立了信任度数据库
gpg: 密钥 920F5C65:公钥“Repo Maintainer <repo@android.kernel.org>”已导入
gpg: 合计被处理的数量:1
gpg:               已导入:1
Getting repo ...
   from git://android.git.kernel.org/tools/repo.git
android.git.kernel.org[0: 130.239.17.12]: errno=Connection timed out
fatal: read error: Connection reset by peer

1.将命令行中的git://android.git.kernel.org换成http://android.git.kernel.org,

2.修改文件repo将里面的

REPO_URL='git://android.git.kernel.org/tools/repo.git' 改成

REPO_URL='http://android.git.kernel.org/tools/repo.git'

3. 修改文件.repo/manifests/default.xml将其中的 fetch="git://android.git.kernel.org/" 改成

fetch="http://android.git.kernel.org/"

这样就可以下载同步Android的源代码了

 

 


原创粉丝点击