标签:
Checking out files from the git repository... Cloning into ‘opkg-9c97d5ecd795709c8584e972bfdf3aee3a5b846d‘... fatal: Could not read from remote repository.
这时往上看一下,看make到哪儿了
make[3]: Entering directory `/home/hevake_lcj/Workspace/OpenWRT/trunk/package/system/opkg‘
原来是 opkg 在 git clone 时可能是路径的问题,失败了。
我尝试打开 opkg 路径下的 Makefile,将
PKG_SOURCE_URL:=http://git.yoctoproject.org/git/opkg
改成:
PKG_SOURCE_URL:=git://git.yoctoproject.org/git/opkg
结果还是没有生效。
我手动搜opkg,找到官网: http://git.yoctoproject.org/cgit/cgit.cgi/opkg/ 打开,看到网页最下面有:
于是,我改 trunk/package/system/opkg/Makefile 文件,把 PKG_SOURCE_URL改成:
PKG_SOURCE_URL:=git://git.yoctoproject.org/opkg
继续 make,通过了!
标签:
原文地址:http://my.oschina.net/hevakelcj/blog/395359