U-boot特定修订的源代码

时间:2015-08-15 08:47:41

标签: git u-boot

我需要获取以下版本详细信息的U-boot源代码。

VERSION = 2014 
PATCHLEVEL = 07 
SUBLEVEL = 
EXTRAVERSION = 
NAME =

我尝试了以下步骤。

  1. 使用以下命令克隆。

    git clone git://git.denx.de/u-boot.git

  2. 但以下是版本细节。

    VERSION = 2015
    PATCHLEVEL = 10
    SUBLEVEL = 
    EXTRAVERSION = -rc1
    NAME =
    
    1. git branch只显示master分支。

      user:~/U-boot/u-boot$ git branch
      * master
      user:~/U-boot/u-boot$
      
    2. 请您使用git指导获取U-boot源(版本:2014,patchlevel:07)。

1 个答案:

答案 0 :(得分:1)

似乎有一个符合这些规格的标签 (见list of tags for git.denx.de/u-boot.git)。

这意味着,一旦你克隆了回购,你就可以做到:

cd ~/U-boot/u-boot
git checkout v2014.07

请注意,它将使您处于分离的HEAD模式(请参阅" What's the difference between “git reset” and “git checkout”?")。
但如果不做任何提交,这并不重要