yangyuliu 发表于 2018-11-21 21:37:20

repo错误

按照教程操作:
mkdir linux
cd linux
git clone https://github.com/FireflyTeam/repo.git
mkdir linux-sdk
cd linux-sdk
../repo/repo init --repo-url https://github.com/FireflyTeam/repo.git -u https://github.com/FireflyTeam/manifests.git -b linux-sdk -m rk3288/rk3288_linux_release.xml
../repo/repo sync -c
到上面最后一步的时候一致报下面的错误
curl: (22) The requested URL returned error: 404 Not Found
Server does not provide clone.bundle; ignoring.

这是什么情况啊,大神们!!!!!!!!

luvings 发表于 2018-11-22 11:13:19

翻墙拉,或者,多拉几次。

yangyuliu 发表于 2018-11-22 14:17:39

luvings 发表于 2018-11-22 11:13
翻墙拉,或者,多拉几次。

直接点击链接是可以连上网站的,应该不用翻墙,我多试几次吧!~

penguin 发表于 2018-11-23 15:01:26

这是repo下载中网速过低,会自动中断,现在可以用脚本拉,
#####################################################
#! /bin/bash

../repo/repo sync -c

while [ $? -ne 0 ] ;
do
        ../repo/repo sync -c ;
done
##########################################

jpchen 发表于 2018-11-24 09:40:36

penguin 发表于 2018-11-23 15:01
这是repo下载中网速过低,会自动中断,现在可以用脚本拉,
############################################## ...

{:4_211:}
页: [1]
查看完整版本: repo错误