- 浏览: 10520 次
最新评论
文章列表
一般来说,在编译时,进行make menuconfig,可以选择你需要编译的包。工具会帮助你完成包依赖的处理,包括依赖包的下载以及编译)。
如果要手动编译一个包,则需要自己解决包依赖的问题。例如想编译一个nano的包,可以通过命令opkg info nano 来知道包依赖是什么
Package: nano
Version: 2.2.5-1
Depends: libncurses
Provides:
Status: install user installed
Architecture: ar71xx
Installed-Time: 1300757537
编译工具以及工具链
make tools/ ...
Using Npm Behind a Corporate Proxy
npm config set proxy http://proxy.company.com:8080
npm config set https-proxy http://proxy.company.com:8080
If you need to specify credentials, they can be passed in the url using the following syntax.
http://user_name:password@proxy.company.com:8080
Note: the n ...
如何通过代理clone GIT的代码
如果clone出现错误,
D:\workspace>git clone git://git.openwrt.org/openwrt.git
Cloning into 'openwrt'...
fatal: unable to connect to git.openwrt.org:
git.openwrt.org[0: 217.115.15.20]: errno=No error
如果你所在的网络需要代理访问网络,那你可以设置git代理服务器
git config --global http.proxy http://10.41.255.xxx:80 ...