diff options
Diffstat (limited to 'roms/u-boot/doc/build/source.rst')
-rw-r--r-- | roms/u-boot/doc/build/source.rst | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/roms/u-boot/doc/build/source.rst b/roms/u-boot/doc/build/source.rst new file mode 100644 index 000000000..470f79398 --- /dev/null +++ b/roms/u-boot/doc/build/source.rst @@ -0,0 +1,30 @@ +Obtaining the source +===================== + +The source of the U-Boot project is maintained in a Git repository. + +You can download the source via + +.. code-block:: bash + + git clone https://source.denx.de/u-boot/u-boot.git + +A mirror of the source is maintained on Github + +.. code-block:: bash + + git clone https://github.com/u-boot/u-boot + +The released versions are available as tags which use the naming scheme:: + + v<year>.<month> + +Release candidates are named:: + + v<year>.<month>-rc<number> + +To checkout the October 2020 release you would use: + +.. code-block:: bash + + git checkout v2020.10 |