Heinrich Schuchardt | 2974ba4 | 2020-09-05 10:58:52 +0200 | [diff] [blame] | 1 | Obtaining the source |
| 2 | ===================== |
| 3 | |
| 4 | The source of the U-Boot project is maintained in a Git repository. |
| 5 | |
| 6 | You can download the source via |
| 7 | |
| 8 | .. code-block:: bash |
| 9 | |
Heinrich Schuchardt | a3bbd0b | 2021-02-24 13:19:04 +0100 | [diff] [blame] | 10 | git clone https://source.denx.de/u-boot/u-boot.git |
Heinrich Schuchardt | 2974ba4 | 2020-09-05 10:58:52 +0200 | [diff] [blame] | 11 | |
| 12 | A mirror of the source is maintained on Github |
| 13 | |
| 14 | .. code-block:: bash |
| 15 | |
| 16 | git clone https://github.com/u-boot/u-boot |
| 17 | |
| 18 | The released versions are available as tags which use the naming scheme:: |
| 19 | |
| 20 | v<year>.<month> |
| 21 | |
| 22 | Release candidates are named:: |
| 23 | |
| 24 | v<year>.<month>-rc<number> |
| 25 | |
| 26 | To checkout the October 2020 release you would use: |
| 27 | |
| 28 | .. code-block:: bash |
| 29 | |
| 30 | git checkout v2020.10 |