doc: describe source repository
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sat, 5 Sep 2020 08:58:52 +0000 (10:58 +0200)
committerTom Rini <trini@konsulko.com>
Sat, 12 Sep 2020 14:53:01 +0000 (10:53 -0400)
Add a chapter to the HTML documentation describing how to retrieve the
U-Boot sources.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
doc/build/index.rst
doc/build/source.rst [new file with mode: 0644]

index e0072af..5051a97 100644 (file)
@@ -6,5 +6,6 @@ Build U-Boot
 .. toctree::
    :maxdepth: 2
 
+   source
    clang
    tools
diff --git a/doc/build/source.rst b/doc/build/source.rst
new file mode 100644 (file)
index 0000000..75720e2
--- /dev/null
@@ -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://gitlab.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