首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >生成错误OpenWRT hotplug2

生成错误OpenWRT hotplug2
EN

Stack Overflow用户
提问于 2014-08-11 15:31:58
回答 1查看 2.3K关注 0票数 1

我在为杨桃模块构建openWRT时遇到了问题。包hotplug2是问题所在。

代码语言:javascript
复制
make[2]: Entering directory /carambola/package/hotplug2
mkdir -p /carambola/dl
echo "Checking out files from the svn repository..."; mkdir -p /carambola/tmp/dl && cd /carambola/tmp/dl && rm -rf hotplug2-201 && [ \! -d hotplug2-201 ] && ( svn help export | grep -q trust-server-cert && svn export --non-interactive --trust-server-cert -r201 http://svn.nomi.cz/svn/isteve/hotplug2 hotplug2-201 || svn export --non-interactive -r201 http://svn.nomi.cz/svn/isteve/hotplug2 hotplug2-201 ) && echo "Packing checkout..." &&   /bin/tar cfz //carambola/tmp/dl/hotplug2-201.tar.gz hotplug2-201 && mv /home/hosst/Dokumente/Projekte/OSC_GIT/02_WSS/linux-system/carambola/tmp/dl/hotplug2-201.tar.gz /carambola/dl/ && rm -rf hotplug2-201; 
Checking out files from the svn repository...
svn: E670002: Unable to connect to a repository at URL 'http://svn.nomi.cz/svn/isteve/hotplug2'
svn: E670002: Name or service not known
svn: E670002: Unable to connect to a repository at URL 'http://svn.nomi.cz/svn/isteve/hotplug2'
svn: E670002: Name or service not known
make[2]: *** [/carambola/dl/hotplug2-201.tar.gz] Error 1
make[2]: Leaving directory /carambola/package/hotplug2
make[1]: *** [package/hotplug2/compile] Error 2
make[1]: Leaving directory carambola
make: *** [package/hotplug2/compile] Fehler 2

显然,svn回购http://svn.nomi.cz/svn/isteve/hotplug2是不可及的。但这是来自OpenWRT Repo (hotplug2包)的原始makefile。

有人知道这个问题吗?在网络上找不到任何提示,但我相信其他很多人都可以毫无问题地编译OpenWRT。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2014-08-18 15:31:50

问题是svn回购的网址已经变了。进行这些更改

package/hotplug2/Makefile

代码语言:javascript
复制
#PKG_REV:=201
PKG_REV:=4 

#PKG_SOURCE_URL:=http://svn.nomi.cz/svn/isteve/hotplug2
PKG_SOURCE_URL:=http://hotplug2.googlecode.com/svn/trunk

通过这些更改,您应该能够编译代码。

票数 4
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/25246963

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档