【背景】
折腾:
期间,需要去下载最新版本的,或者是特定的u-boot-2010.09版本的uboot。
注:
此处没法用ftp。
所以官网中的:
http://www.denx.de/wiki/U-Boot/SourceCode
->
此处没法用的。
【折腾过程】
1.参考uboot的git官网:
http://git.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=summary
所以去试了试,去用clone,结果连不上:
crifan@ubuntu:u-boot-2013.07$ git clone git://git.denx.de/u-boot.git Cloning into 'u-boot'... fatal: unable to connect to git.denx.de: git.denx.de[0: 85.214.87.163]: errno=Connection refused crifan@ubuntu:u-boot-2013.07$ git clone http://git.denx.de/u-boot.git Cloning into 'u-boot'...
2.然后看到有对应的tag,即为我们所需要的主版本:
所以问题转化为:
如何用git去下载某个特定的tag(即某个特定的版本)
参考:
How to use git to download a particular tag?
去试试,结果才发现,问题是此处git clone就连不上uboot,所以后续根本没法下载某个tag。。。
3.暂时貌似没法通过git,因为此处uboot官网拒绝我用git去访问。。
所以逼得不行了,只有通过访问git页面,去下载对应的tag:v2013.07的版本了:
然后再改名为我们要的:
u-boot-2013.07.tar.bz2
【总结】
哎,git还是没法用,最后还是通过网页中手动下载的。。。
转载请注明:在路上 » 【记录】用git下载最新的uboot代码